C# Class Keyczar.EncryptedKeySet

Wraps a key set to decrypt it
Inheritance: IKeySet
Show file Open project: jbtule/keyczar-dotnet Class Usage Examples

Public Methods

Method Description
EncryptedKeySet ( IKeySet keySet, Crypter crypter ) : System.Collections.Generic

Initializes a new instance of the EncryptedKeySet class.

EncryptedKeySet ( string keySetLocation, Crypter crypter ) : System.Collections.Generic

Initializes a new instance of the EncryptedKeySet class.

GetKeyData ( int version ) : byte[]

Gets the binary data that the key is stored in.

Method Details

EncryptedKeySet() public method

Initializes a new instance of the EncryptedKeySet class.
public EncryptedKeySet ( IKeySet keySet, Crypter crypter ) : System.Collections.Generic
keySet IKeySet The key set.
crypter Crypter The crypter.
return System.Collections.Generic

EncryptedKeySet() public method

Initializes a new instance of the EncryptedKeySet class.
public EncryptedKeySet ( string keySetLocation, Crypter crypter ) : System.Collections.Generic
keySetLocation string The key set location.
crypter Crypter The crypter.
return System.Collections.Generic

GetKeyData() public method

Gets the binary data that the key is stored in.
public GetKeyData ( int version ) : byte[]
version int The version.
return byte[]