C# Class Keyczar.EncryptedKeySetWriter

Encrypts a keys before passing them to another keysetwriter
Inheritance: IKeySetWriter
Afficher le fichier Open project: jbtule/keyczar-dotnet

Méthodes publiques

Méthode Description
EncryptedKeySetWriter ( IKeySetWriter writer, Encrypter encrypter ) : System.Linq

Initializes a new instance of the EncryptedKeySetWriter class.

Finish ( ) : bool

Finishes this writing of the key.

Write ( KeyMetadata metadata ) : void

Writes the specified metadata.

Write ( byte keyData, int version ) : void

Writes the specified key data.

Method Details

EncryptedKeySetWriter() public méthode

Initializes a new instance of the EncryptedKeySetWriter class.
public EncryptedKeySetWriter ( IKeySetWriter writer, Encrypter encrypter ) : System.Linq
writer IKeySetWriter The writer.
encrypter Encrypter The encrypter.
Résultat System.Linq

Finish() public méthode

Finishes this writing of the key.
public Finish ( ) : bool
Résultat bool

Write() public méthode

Writes the specified metadata.
public Write ( KeyMetadata metadata ) : void
metadata KeyMetadata The metadata.
Résultat void

Write() public méthode

Writes the specified key data.
public Write ( byte keyData, int version ) : void
keyData byte The key data.
version int The version.
Résultat void