C# Class NContext.Security.Cryptography.CryptographyConfiguration

Defines configuration settings for application cryptographic operations.
Mostrar archivo Open project: PowerDMS/NContext Class Usage Examples

Public Methods

Method Description
CryptographyConfiguration ( Type defaultHashAlgorithm, Type defaultKeyedHashAlgorithm, Type defaultSymmetricAlgorithm, Func hashProviderFactory, Func keyedHashProviderFactory, Func symmetricEncryptionProviderFactory ) : System

Initializes a new instance of the CryptographyConfiguration class.

Method Details

CryptographyConfiguration() public method

Initializes a new instance of the CryptographyConfiguration class.
public CryptographyConfiguration ( Type defaultHashAlgorithm, Type defaultKeyedHashAlgorithm, Type defaultSymmetricAlgorithm, Func hashProviderFactory, Func keyedHashProviderFactory, Func symmetricEncryptionProviderFactory ) : System
defaultHashAlgorithm System.Type The default hash algorithm.
defaultKeyedHashAlgorithm System.Type The default keyed hash algorithm.
defaultSymmetricAlgorithm System.Type The default symmetric algorithm.
hashProviderFactory Func The hash provider factory.
keyedHashProviderFactory Func The keyed hash provider factory.
symmetricEncryptionProviderFactory Func The symmetric encryption provider factory.
return System