CrypterCrypt Method (String) | CryptSharp |
Creates a one-way password hash (crypted password) from a password string.
Namespace: CryptSharp
Assembly: CryptSharp (in CryptSharp.dll) Version: 2.1.0.0
Syntax
public string Crypt( string password )
Public Function Crypt ( password As String ) As String
public: String^ Crypt( String^ password )
member Crypt : password : string -> string
Parameters
- password
- Type: SystemString
The password string. Characters are UTF-8 encoded.
Return Value
Type: StringThe crypted password.
See Also