BlowfishCipherCreate Method | CryptSharp |
Creates a Blowfish cipher using the provided key.
Namespace: CryptSharp.Utility
Assembly: CryptSharp (in CryptSharp.dll) Version: 2.1.0.0
Syntax
public static BlowfishCipher Create( byte[] key )
Public Shared Function Create ( key As Byte() ) As BlowfishCipher
public: static BlowfishCipher^ Create( array<unsigned char>^ key )
static member Create : key : byte[] -> BlowfishCipher
Parameters
- key
- Type: SystemByte
The Blowfish key. This must be between 4 and 56 bytes.
Return Value
Type: BlowfishCipherA Blowfish cipher.
See Also