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