summaryrefslogtreecommitdiff
path: root/src/lib/libssl/d1_srtp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/d1_srtp.c')
-rw-r--r--src/lib/libssl/d1_srtp.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/lib/libssl/d1_srtp.c b/src/lib/libssl/d1_srtp.c
index cbdb4a6144..70f9453f5f 100644
--- a/src/lib/libssl/d1_srtp.c
+++ b/src/lib/libssl/d1_srtp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: d1_srtp.c,v 1.28 2021/05/16 13:56:30 jsing Exp $ */ 1/* $OpenBSD: d1_srtp.c,v 1.29 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 *
@@ -136,6 +136,14 @@ static const SRTP_PROTECTION_PROFILE srtp_known_profiles[] = {
136 "SRTP_AES128_CM_SHA1_32", 136 "SRTP_AES128_CM_SHA1_32",
137 SRTP_AES128_CM_SHA1_32, 137 SRTP_AES128_CM_SHA1_32,
138 }, 138 },
139 {
140 "SRTP_AEAD_AES_128_GCM",
141 SRTP_AEAD_AES_128_GCM,
142 },
143 {
144 "SRTP_AEAD_AES_256_GCM",
145 SRTP_AEAD_AES_256_GCM,
146 },
139 {0} 147 {0}
140}; 148};
141 149