summaryrefslogtreecommitdiff
path: root/src/lib/libssl/man
diff options
context:
space:
mode:
authorlandry <>2021-06-11 15:28:14 +0000
committerlandry <>2021-06-11 15:28:14 +0000
commit2215c5d14fb37cc4aab492e6fdbd91ccb77380f9 (patch)
tree30aa842b7ca74087437856fd043acad5f005814d /src/lib/libssl/man
parent71e70856d8c19b44f4948c51b9dfd0bae00f98bc (diff)
downloadopenbsd-2215c5d14fb37cc4aab492e6fdbd91ccb77380f9.tar.gz
openbsd-2215c5d14fb37cc4aab492e6fdbd91ccb77380f9.tar.bz2
openbsd-2215c5d14fb37cc4aab492e6fdbd91ccb77380f9.zip
add AES-GCM constants from RFC 7714 for SRTP
SRTP_AEAD_AES_128_GCM/SRTP_AEAD_AES_256_GCM can be used as DTLS-SRTP protection profiles - seen with an update of telephony/baresip i'm working on. adapted from openssl commit 43e5faa2539ae8aae6ef55be2239b9b1a77fea45 ok tb@ jsing@
Diffstat (limited to 'src/lib/libssl/man')
-rw-r--r--src/lib/libssl/man/SSL_CTX_set_tlsext_use_srtp.38
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/libssl/man/SSL_CTX_set_tlsext_use_srtp.3 b/src/lib/libssl/man/SSL_CTX_set_tlsext_use_srtp.3
index c194a59d4b..f936f01d7b 100644
--- a/src/lib/libssl/man/SSL_CTX_set_tlsext_use_srtp.3
+++ b/src/lib/libssl/man/SSL_CTX_set_tlsext_use_srtp.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: SSL_CTX_set_tlsext_use_srtp.3,v 1.4 2019/06/12 09:36:30 schwarze Exp $ 1.\" $OpenBSD: SSL_CTX_set_tlsext_use_srtp.3,v 1.5 2021/06/11 15:28:14 landry Exp $
2.\" full merge up to: OpenSSL b0edda11 Mar 20 13:00:17 2018 +0000 2.\" full merge up to: OpenSSL b0edda11 Mar 20 13:00:17 2018 +0000
3.\" 3.\"
4.\" This file was written by Matt Caswell <matt@openssl.org>. 4.\" This file was written by Matt Caswell <matt@openssl.org>.
@@ -48,7 +48,7 @@
48.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 48.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
49.\" OF THE POSSIBILITY OF SUCH DAMAGE. 49.\" OF THE POSSIBILITY OF SUCH DAMAGE.
50.\" 50.\"
51.Dd $Mdocdate: June 12 2019 $ 51.Dd $Mdocdate: June 11 2021 $
52.Dt SSL_CTX_SET_TLSEXT_USE_SRTP 3 52.Dt SSL_CTX_SET_TLSEXT_USE_SRTP 3
53.Os 53.Os
54.Sh NAME 54.Sh NAME
@@ -113,6 +113,10 @@ The currently supported protection profile names are:
113This corresponds to SRTP_AES128_CM_HMAC_SHA1_80 defined in RFC5764. 113This corresponds to SRTP_AES128_CM_HMAC_SHA1_80 defined in RFC5764.
114.It Dv SRTP_AES128_CM_SHA1_32 114.It Dv SRTP_AES128_CM_SHA1_32
115This corresponds to SRTP_AES128_CM_HMAC_SHA1_32 defined in RFC5764. 115This corresponds to SRTP_AES128_CM_HMAC_SHA1_32 defined in RFC5764.
116.It Dv SRTP_AEAD_AES_128_GCM
117This corresponds to SRTP_AEAD_AES_128_GCM defined in RFC7714.
118.It Dv SRTP_AEAD_AES_256_GCM
119This corresponds to SRTP_AEAD_AES_256_GCM defined in RFC7714.
116.El 120.El
117.Pp 121.Pp
118Supplying an unrecognised protection profile name results in an error. 122Supplying an unrecognised protection profile name results in an error.