C# 클래스 Internal.Cryptography.RijndaelImplementation

Internal implementation of Rijndael. This class is returned from Rijndael.Create() instead of the public RijndaelManaged to be consistent with the rest of the static Create() methods which return opaque types. They both have have the same implementation.
상속: System.Security.Cryptography.Rijndael
파일 보기 프로젝트 열기: dotnet/corefx

공개 메소드들

메소드 설명
CreateDecryptor ( ) : ICryptoTransform
CreateDecryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
CreateEncryptor ( ) : ICryptoTransform
CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
GenerateIV ( ) : void
GenerateKey ( ) : void

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

비공개 메소드들

메소드 설명
RijndaelImplementation ( ) : System

메소드 상세

CreateDecryptor() 공개 메소드

public CreateDecryptor ( ) : ICryptoTransform
리턴 ICryptoTransform

CreateDecryptor() 공개 메소드

public CreateDecryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
rgbKey byte
rgbIV byte
리턴 ICryptoTransform

CreateEncryptor() 공개 메소드

public CreateEncryptor ( ) : ICryptoTransform
리턴 ICryptoTransform

CreateEncryptor() 공개 메소드

public CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
rgbKey byte
rgbIV byte
리턴 ICryptoTransform

Dispose() 보호된 메소드

protected Dispose ( bool disposing ) : void
disposing bool
리턴 void

GenerateIV() 공개 메소드

public GenerateIV ( ) : void
리턴 void

GenerateKey() 공개 메소드

public GenerateKey ( ) : void
리턴 void