Method | Description | |
---|---|---|
CreateDecryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform |
Create a decryptor.
|
|
CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform |
Create an encryptor.
|
|
GenerateIV ( ) : void |
Generate an initial vector.
|
|
GenerateKey ( ) : void |
Generate a new random key.
|
public CreateDecryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform | ||
rgbKey | byte | Keys to use for this new decryptor. |
rgbIV | byte | Initialisation vector for the new decryptor. |
return | ICryptoTransform |
public CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform | ||
rgbKey | byte | The key to use for this encryptor. |
rgbIV | byte | Initialisation vector for the new encryptor. |
return | ICryptoTransform |