i'm in a need of using the unix Crypt(salt, key) function in c# code for encrypting my password using a two character salt and 8 characters key. In C/C++, we can do so but how to do this in C#. I'm using Mono C# in ubuntu linux. Please suggest.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Here's the complete working program which uses unix crypt:
It prints result of crypting with given key and salt. Of course you can put UnixCrypt in any other class. For convenience you can also create method:
|
||||
|
|
|
There is an similar question- Encrypt/Decrypt string in .NET There is an article on Code Project, it teaches how you can create an helper class. |
|||
|