summary refs log tree commit diff
path: root/crypto/src/crypto/tls/EncryptionAlgorithm.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/crypto/tls/EncryptionAlgorithm.cs')
-rw-r--r--crypto/src/crypto/tls/EncryptionAlgorithm.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/src/crypto/tls/EncryptionAlgorithm.cs b/crypto/src/crypto/tls/EncryptionAlgorithm.cs
index 3ef5274e1..04c1733cb 100644
--- a/crypto/src/crypto/tls/EncryptionAlgorithm.cs
+++ b/crypto/src/crypto/tls/EncryptionAlgorithm.cs
@@ -60,5 +60,11 @@ namespace Org.BouncyCastle.Crypto.Tls
          */
         public const int CHACHA20_POLY1305 = 102;
         [Obsolete] public const int AEAD_CHACHA20_POLY1305 = CHACHA20_POLY1305;
+
+        /*
+         * draft-zauner-tls-aes-ocb-03
+         */
+        public const int AES_128_OCB_TAGLEN96 = 103;
+        public const int AES_256_OCB_TAGLEN96 = 104;
     }
 }