1 write to _keyDerivationKey
Microsoft.AspNetCore.DataProtection (1)
Managed\ManagedAuthenticatedEncryptor.cs (1)
49_keyDerivationKey = keyDerivationKey;
10 references to _keyDerivationKey
Microsoft.AspNetCore.DataProtection (10)
Managed\ManagedAuthenticatedEncryptor.cs (10)
80_keyDerivationKey.Dispose(); 113Span<byte> decryptedKdk = _keyDerivationKey.Length <= 256 114? stackalloc byte[256].Slice(0, _keyDerivationKey.Length) 115: new byte[_keyDerivationKey.Length]; 132_keyDerivationKey.WriteSecretIntoBuffer(decryptedKdkUnsafe, decryptedKdk.Length); 211Span<byte> decryptedKdk = _keyDerivationKey.Length <= 256 212? stackalloc byte[256].Slice(0, _keyDerivationKey.Length) 213: new byte[_keyDerivationKey.Length]; 230_keyDerivationKey.WriteSecretIntoBuffer(decryptedKdkUnsafe, decryptedKdk.Length); 694_keyDerivationKey.Dispose();