CrypterCrypt Method (Byte, CrypterOptions) | CryptSharp |
Creates a one-way password hash (crypted password) from password bytes.
Options modify the crypt operation.
Namespace: CryptSharp
Assembly: CryptSharp (in CryptSharp.dll) Version: 2.1.0.0
Syntax
public string Crypt( byte[] password, CrypterOptions options )
Public Function Crypt ( password As Byte(), options As CrypterOptions ) As String
public: String^ Crypt( array<unsigned char>^ password, CrypterOptions^ options )
member Crypt : password : byte[] * options : CrypterOptions -> string
Parameters
- password
- Type: SystemByte
The bytes of the password. - options
- Type: CryptSharpCrypterOptions
Options modifying the crypt operation.
Return Value
Type: StringThe crypted password.
See Also