Skip to content

Commit 5610c01

Browse files
committed
Add xml comments to AesGcm algo consts
1 parent 5f20ed1 commit 5610c01

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/Microsoft.IdentityModel.Tokens/SecurityAlgorithms.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,18 @@ public static class SecurityAlgorithms
3939
public const string Aes256Encryption = "http://www.w3.org/2001/04/xmlenc#aes256-cbc";
4040
public const string DesEncryption = "http://www.w3.org/2001/04/xmlenc#des-cbc";
4141

42-
// Currently not supported. It's possible to provide your own implementation of the algorithm by overriding CryptoProviderFactory and AuthenticatedEncryptionProvider.
4342
// See: https://www.w3.org/TR/xmlenc-core1/#sec-AES-GCM
43+
/// <summary>
44+
/// Currently not supported. It's possible to provide your own implementation of the algorithm by overriding CryptoProviderFactory and AuthenticatedEncryptionProvider.
45+
/// </summary>
4446
public const string Aes128Gcm = "http://www.w3.org/2009/xmlenc11#aes128-gcm";
47+
/// <summary>
48+
/// Currently not supported. It's possible to provide your own implementation of the algorithm by overriding CryptoProviderFactory and AuthenticatedEncryptionProvider.
49+
/// </summary>
4550
public const string Aes192Gcm = "http://www.w3.org/2009/xmlenc11#aes192-gcm";
51+
/// <summary>
52+
/// Currently not supported. It's possible to provide your own implementation of the algorithm by overriding CryptoProviderFactory and AuthenticatedEncryptionProvider.
53+
/// </summary>
4654
public const string Aes256Gcm = "http://www.w3.org/2009/xmlenc11#aes256-gcm";
4755

4856
// See: https://www.w3.org/TR/xmlenc-core1/#sec-kw-aes

0 commit comments

Comments
 (0)