Метод | Описание | |
---|---|---|
CreateDecryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform |
Creates a symmetric decryptor object with the specified P:System.Security.Cryptography.SymmetricAlgorithm.Key property and initialization vector (P:System.Security.Cryptography.SymmetricAlgorithm.IV).
|
|
CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform |
Creates a symmetric encryptor object with the specified P:System.Security.Cryptography.SymmetricAlgorithm.Key property and initialization vector (P:System.Security.Cryptography.SymmetricAlgorithm.IV).
|
public CreateDecryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform | ||
rgbKey | byte | /// The secret key to use for the symmetric algorithm. /// |
rgbIV | byte | /// The initialization vector to use for the symmetric algorithm. /// |
Результат | ICryptoTransform |
public CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform | ||
rgbKey | byte | /// The secret key to use for the symmetric algorithm. /// |
rgbIV | byte | /// The initialization vector to use for the symmetric algorithm. /// |
Результат | ICryptoTransform |