aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src/ssl_record.hrl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2019-03-25 10:08:40 +0100
committerIngela Anderton Andin <[email protected]>2019-03-29 11:33:45 +0100
commit61e3f73986f70408909af0b5ec00dfc7ae2fc6de (patch)
tree492adc8ec48840f12d68849cde13c7735752008f /lib/ssl/src/ssl_record.hrl
parent77fe4acc29735b15da19d7c991f83bca22417102 (diff)
downloadotp-61e3f73986f70408909af0b5ec00dfc7ae2fc6de.tar.gz
otp-61e3f73986f70408909af0b5ec00dfc7ae2fc6de.tar.bz2
otp-61e3f73986f70408909af0b5ec00dfc7ae2fc6de.zip
ssl: Add support AES_CCM cipher suites form RFC 6655
Diffstat (limited to 'lib/ssl/src/ssl_record.hrl')
-rw-r--r--lib/ssl/src/ssl_record.hrl5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ssl/src/ssl_record.hrl b/lib/ssl/src/ssl_record.hrl
index eb718fd20c..6d4d47cedb 100644
--- a/lib/ssl/src/ssl_record.hrl
+++ b/lib/ssl/src/ssl_record.hrl
@@ -96,6 +96,11 @@
-define(AES_CBC, 7).
-define(AES_GCM, 8).
-define(CHACHA20_POLY1305, 9).
+%% Following two are not defined in any RFC but we want to have the
+%% same type of handling internaly, all of these "bulk_cipher_algorithm"
+%% enums are only used internaly anyway.
+-define(AES_CCM, 10).
+-define(AES_CCM_8, 11).
%% CipherType
-define(STREAM, 0).