C# Класс DotNetCrypt.SerpentManaged

Accesses the managed version of the Serpent algorithm. This class cannot be inherited.
Наследование: Serpent
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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).

Описание методов

CreateDecryptor() публичный Метод

Creates a symmetric decryptor 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

CreateEncryptor() публичный Метод

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 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