2 instantiations of AesGcm
Microsoft.AspNetCore.DataProtection (2)
Managed\AesGcmAuthenticatedEncryptor.cs (2)
127
using var aes = new
AesGcm
(derivedKey, TAG_SIZE_IN_BYTES);
200
using var aes = new
AesGcm
(derivedKey, TAG_SIZE_IN_BYTES);
7 references to AesGcm
Microsoft.AspNetCore.DataProtection (2)
Managed\AesGcmAuthenticatedEncryptor.cs (2)
127
using
var
aes = new AesGcm(derivedKey, TAG_SIZE_IN_BYTES);
200
using
var
aes = new AesGcm(derivedKey, TAG_SIZE_IN_BYTES);
netstandard (1)
netstandard.cs (1)
1843
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.
AesGcm
))]
System.Security.Cryptography (3)
System\Security\Cryptography\AesGcm.cs (3)
36
/// Initializes a new instance of the <see cref="
AesGcm
" /> class with a provided key and required tag size.
71
/// Initializes a new instance of the <see cref="
AesGcm
" /> class with a provided key and required tag size.
179
throw new PlatformNotSupportedException(SR.Format(SR.Cryptography_AlgorithmNotSupported, nameof(
AesGcm
)));
System.Security.Cryptography.Algorithms (1)
System.Security.Cryptography.Algorithms.cs (1)
6
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.
AesGcm
))]