C# 클래스 Keyczar.Crypto.AesKey

Encrypts AES
상속: Key, ICrypterKey
파일 보기 프로젝트 열기: jbtule/keyczar-dotnet

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
AesKey ( ) : System.Collections.Generic

Initializes a new instance of the AesKey class.

GetAuthSigningStream ( ) : HashingStream

Gets the authentication signing stream.

GetAuthVerifyingStream ( ) : VerifyingStream

Gets the authentication verifying stream.

GetDecryptingStream ( Stream output ) : FinishingStream

Gets the decrypting stream.

GetEncryptingStream ( Stream output ) : FinishingStream

Gets the encrypting stream.

GetFallbackKeyHash ( ) : IEnumerable

Gets the fallback key hashes. old/buggy hashes from old/other keyczar implementations

GetKeyHash ( ) : byte[]

Gets the key hash.

보호된 메소드들

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

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

GenerateKey ( int size ) : void

Generates the key.

메소드 상세

AesKey() 공개 메소드

Initializes a new instance of the AesKey class.
public AesKey ( ) : System.Collections.Generic
리턴 System.Collections.Generic

Dispose() 보호된 메소드

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
protected Dispose ( bool disposing ) : void
disposing bool
리턴 void

GenerateKey() 보호된 메소드

Generates the key.
protected GenerateKey ( int size ) : void
size int The size.
리턴 void

GetAuthSigningStream() 공개 메소드

Gets the authentication signing stream.
public GetAuthSigningStream ( ) : HashingStream
리턴 Keyczar.Crypto.Streams.HashingStream

GetAuthVerifyingStream() 공개 메소드

Gets the authentication verifying stream.
public GetAuthVerifyingStream ( ) : VerifyingStream
리턴 VerifyingStream

GetDecryptingStream() 공개 메소드

Gets the decrypting stream.
public GetDecryptingStream ( Stream output ) : FinishingStream
output System.IO.Stream The output.
리턴 Keyczar.Crypto.Streams.FinishingStream

GetEncryptingStream() 공개 메소드

Gets the encrypting stream.
public GetEncryptingStream ( Stream output ) : FinishingStream
output System.IO.Stream The output.
리턴 Keyczar.Crypto.Streams.FinishingStream

GetFallbackKeyHash() 공개 메소드

Gets the fallback key hashes. old/buggy hashes from old/other keyczar implementations
public GetFallbackKeyHash ( ) : IEnumerable
리턴 IEnumerable

GetKeyHash() 공개 메소드

Gets the key hash.
public GetKeyHash ( ) : byte[]
리턴 byte[]