3 references to CreateAuthenticatedEncryptorInstance
Microsoft.AspNetCore.DataProtection (3)
AuthenticatedEncryption\AuthenticatedEncryptorFactory.cs (1)
91
return new CngCbcAuthenticatedEncryptorFactory(_loggerFactory).
CreateAuthenticatedEncryptorInstance
(secret, configuration);
AuthenticatedEncryption\CngCbcAuthenticatedEncryptorFactory.cs (1)
44
return
CreateAuthenticatedEncryptorInstance
(descriptor.MasterKey, descriptor.Configuration);
AuthenticatedEncryption\ConfigurationModel\CngCbcAuthenticatedEncryptorConfiguration.cs (1)
98
using var encryptor = factory.
CreateAuthenticatedEncryptorInstance
(secret, this);