Method | Description | |
---|---|---|
RegisterEncryptionService ( this config, Func |
Register a custom IEncryptionService to be used for message encryption.
|
|
RijndaelEncryptionService ( this config ) : void |
Use 256 bit AES encryption based on the Rijndael cipher.
|
|
RijndaelEncryptionService ( this config, string encryptionKeyIdentifier, byte[]>.IDictionary |
Use 256 bit AES encryption based on the Rijndael cipher.
|
|
RijndaelEncryptionService ( this config, string encryptionKeyIdentifier, byte encryptionKey, IList |
Use 256 bit AES encryption based on the Rijndael cipher.
|
Method | Description | |
---|---|---|
AddKeyIdentifierItems ( dynamic item, byte[]>.Dictionary |
||
BuildRijndaelEncryptionService ( string encryptionKeyIdentifier, byte[]>.IDictionary |
||
ConvertConfigToRijndaelService ( RijndaelEncryptionServiceConfig section ) : IEncryptionService | ||
ExtractDecryptionKeysFromConfigSection ( RijndaelEncryptionServiceConfig section ) : List |
||
ExtractKeysFromConfigSection ( RijndaelEncryptionServiceConfig section ) : byte[]>.Dictionary |
||
GetEncryptionServiceConstructor ( this settings ) : Func |
||
ParseKey ( string key, KeyFormat keyFormat ) : byte[] | ||
ValidateConfigSection ( RijndaelEncryptionServiceConfig section ) : void | ||
VerifyKeys ( List |
public static RegisterEncryptionService ( this config, Func |
||
config | this | The |
func | Func |
/// A delegate that constructs the instance of |
return | void |
public static RijndaelEncryptionService ( this config ) : void | ||
config | this | The |
return | void |
public static RijndaelEncryptionService ( this config, string encryptionKeyIdentifier, byte[]>.IDictionary |
||
config | this | |
encryptionKeyIdentifier | string | |
keys | byte[]>.IDictionary | |
decryptionKeys | IList |
|
return | void |
public static RijndaelEncryptionService ( this config, string encryptionKeyIdentifier, byte encryptionKey, IList |
||
config | this | The |
encryptionKeyIdentifier | string | Encryption key identifier. |
encryptionKey | byte | Encryption Key. |
decryptionKeys | IList |
A list of decryption keys. |
return | void |