2 instantiations of AesGcm
Microsoft.AspNetCore.DataProtection (2)
Managed\AesGcmAuthenticatedEncryptor.cs (2)
127using var aes = new AesGcm(derivedKey, TAG_SIZE_IN_BYTES); 200using var aes = new AesGcm(derivedKey, TAG_SIZE_IN_BYTES);
7 references to AesGcm
Microsoft.AspNetCore.DataProtection (2)
Managed\AesGcmAuthenticatedEncryptor.cs (2)
127using var aes = new AesGcm(derivedKey, TAG_SIZE_IN_BYTES); 200using 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)
34/// Initializes a new instance of the <see cref="AesGcm" /> class with a provided key and required tag size. 69/// Initializes a new instance of the <see cref="AesGcm" /> class with a provided key and required tag size. 177throw 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))]