C# 클래스 Keyczar.PbeKeySetWriter

Password Based Encrypted Key Set
상속: IKeySetWriter, IDisposable
파일 보기 프로젝트 열기: jbtule/keyczar-dotnet

공개 메소드들

메소드 설명
Dispose ( ) : void

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

Finish ( ) : bool

Finishes this writing of the key.

PbeKeySetWriter ( IKeySetWriter writer, Func passwordPrompt, int iterationCount = 4096 ) : System

Initializes a new instance of the PbeKeySetWriter class.

Write ( KeyMetadata metadata ) : void

Writes the specified metadata.

Write ( byte keyData, int version ) : void

Writes the specified key data.

보호된 메소드들

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

Releases unmanaged and - optionally - managed resources.

메소드 상세

Dispose() 공개 메소드

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

Dispose() 보호된 메소드

Releases unmanaged and - optionally - managed resources.
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
리턴 void

Finish() 공개 메소드

Finishes this writing of the key.
public Finish ( ) : bool
리턴 bool

PbeKeySetWriter() 공개 메소드

Initializes a new instance of the PbeKeySetWriter class.
public PbeKeySetWriter ( IKeySetWriter writer, Func passwordPrompt, int iterationCount = 4096 ) : System
writer IKeySetWriter The writer.
passwordPrompt Func The password prompt.
iterationCount int The interations count.
리턴 System

Write() 공개 메소드

Writes the specified metadata.
public Write ( KeyMetadata metadata ) : void
metadata KeyMetadata The metadata.
리턴 void

Write() 공개 메소드

Writes the specified key data.
public Write ( byte keyData, int version ) : void
keyData byte The key data.
version int The version.
리턴 void