diff options
Diffstat (limited to 'src/lib/libssl/srtp.h')
-rw-r--r-- | src/lib/libssl/srtp.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libssl/srtp.h b/src/lib/libssl/srtp.h index 6daa02a791..89ce862020 100644 --- a/src/lib/libssl/srtp.h +++ b/src/lib/libssl/srtp.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: srtp.h,v 1.6 2015/09/01 15:18:23 jsing Exp $ */ | 1 | /* $OpenBSD: srtp.h,v 1.7 2021/06/11 15:28:13 landry Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -129,6 +129,10 @@ extern "C" { | |||
129 | #define SRTP_NULL_SHA1_80 0x0005 | 129 | #define SRTP_NULL_SHA1_80 0x0005 |
130 | #define SRTP_NULL_SHA1_32 0x0006 | 130 | #define SRTP_NULL_SHA1_32 0x0006 |
131 | 131 | ||
132 | /* AEAD SRTP protection profiles from RFC 7714 */ | ||
133 | #define SRTP_AEAD_AES_128_GCM 0x0007 | ||
134 | #define SRTP_AEAD_AES_256_GCM 0x0008 | ||
135 | |||
132 | int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles); | 136 | int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles); |
133 | int SSL_set_tlsext_use_srtp(SSL *ctx, const char *profiles); | 137 | int SSL_set_tlsext_use_srtp(SSL *ctx, const char *profiles); |
134 | 138 | ||