DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | Properties | List of all members
Deveel.Data.Protocol.EncryptionData Class Reference

Public Member Functions

 EncryptionData (string hashAlgorithm, string key)
 
 EncryptionData (string hashAlgorithm, string key, string iv)
 

Properties

string HashAlgorithm [get, private set]
 
string Key [get, private set]
 
string IV [get, private set]
 

Detailed Description

Definition at line 20 of file EncryptionData.cs.

Constructor & Destructor Documentation

Deveel.Data.Protocol.EncryptionData.EncryptionData ( string  hashAlgorithm,
string  key 
)
inline

Definition at line 21 of file EncryptionData.cs.

22  : this(hashAlgorithm, key, String.Empty) {
23  }
A long string in the system.
Deveel.Data.Protocol.EncryptionData.EncryptionData ( string  hashAlgorithm,
string  key,
string  iv 
)
inline

Definition at line 25 of file EncryptionData.cs.

25  {
26  IV = iv;
27  Key = key;
28  HashAlgorithm = hashAlgorithm;
29  }

Property Documentation

string Deveel.Data.Protocol.EncryptionData.HashAlgorithm
getprivate set

Definition at line 31 of file EncryptionData.cs.

string Deveel.Data.Protocol.EncryptionData.IV
getprivate set

Definition at line 35 of file EncryptionData.cs.

string Deveel.Data.Protocol.EncryptionData.Key
getprivate set

Definition at line 33 of file EncryptionData.cs.


The documentation for this class was generated from the following file: