C# 클래스 DotNetCrypt.SerpentManaged

Accesses the managed version of the Serpent algorithm. This class cannot be inherited.
상속: Serpent
파일 보기 프로젝트 열기: drizzt/KeePass-SerpentCipher 1 사용 예제들

공개 메소드들

메소드 설명
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