diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2024-04-10 18:03:12 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2024-04-10 18:03:12 +0700 |
commit | 7cda088ce02cf8a5924afeaa9622fa548e837e41 (patch) | |
tree | 5bb04b16951a0f903f73dad9128da8ad6580662c /crypto/src/tls/EncryptionAlgorithm.cs | |
parent | Add various fingerprint-related methods in OpenPgp (diff) | |
download | BouncyCastle.NET-ed25519-7cda088ce02cf8a5924afeaa9622fa548e837e41.tar.xz |
TLS: Some work on GOST support (RFC 9189)
Diffstat (limited to 'crypto/src/tls/EncryptionAlgorithm.cs')
-rw-r--r-- | crypto/src/tls/EncryptionAlgorithm.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/crypto/src/tls/EncryptionAlgorithm.cs b/crypto/src/tls/EncryptionAlgorithm.cs index 8064451ab..0fc2beeb4 100644 --- a/crypto/src/tls/EncryptionAlgorithm.cs +++ b/crypto/src/tls/EncryptionAlgorithm.cs @@ -78,5 +78,12 @@ namespace Org.BouncyCastle.Tls * GMT 0024-2014 */ public const int SM4_CBC = 28; + + /* + * RFC 9189 + */ + public const int KUZNYECHIK_CTR_OMAC = 29; + public const int MAGMA_CTR_OMAC = 30; + public const int cls_28147_CNT_IMIT = 31; } } |