J
JamesB
Not sure if this is possible, but has anyone seen (or know how to do)
emulation of the PHP "crypt" function from within c#?
Thanks
emulation of the PHP "crypt" function from within c#?
Thanks
JamesB said:Not sure if this is possible, but has anyone seen (or know how to do)
emulation of the PHP "crypt" function from within c#?
According to http://www.phpbuilder.com/manual/en/function.crypt.phpNot sure if this is possible, but has anyone seen (or know how to do)
emulation of the PHP "crypt" function from within c#?
Thanks
rossum said:According to http://www.phpbuilder.com/manual/en/function.crypt.php
the PHP cryp() function may use either DES or MD5. Both of these are
available in .NET
rossum
Jon Skeet said:Are you just trying to do cryptography in general, or does it have to
match the exact format/functionality of PHP's "crypt" function?
JamesB said:Ideally I want to be able to "crypt" a string in a c# app, and get the same
hash that a bit of php code on a webserver would generate... I'll have a
play with the built in .net stuff and see what comes out I guess...