SSL_CTX_set_tlsext_use_srtp.pod 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. =pod
  2. =head1 NAME
  3. SSL_CTX_set_tlsext_use_srtp,
  4. SSL_set_tlsext_use_srtp,
  5. SSL_get_srtp_profiles,
  6. SSL_get_selected_srtp_profile
  7. - Configure and query SRTP support
  8. =head1 SYNOPSIS
  9. #include <openssl/srtp.h>
  10. int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles);
  11. int SSL_set_tlsext_use_srtp(SSL *ssl, const char *profiles);
  12. STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *ssl);
  13. SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s);
  14. =head1 DESCRIPTION
  15. SRTP is the Secure Real-Time Transport Protocol. OpenSSL implements support for
  16. the "use_srtp" DTLS extension defined in RFC5764. This provides a mechanism for
  17. establishing SRTP keying material, algorithms and parameters using DTLS. This
  18. capability may be used as part of an implementation that conforms to RFC5763.
  19. OpenSSL does not implement SRTP itself or RFC5763. Note that OpenSSL does not
  20. support the use of SRTP Master Key Identifiers (MKIs). Also note that this
  21. extension is only supported in DTLS. Any SRTP configuration will be ignored if a
  22. TLS connection is attempted.
  23. An OpenSSL client wishing to send the "use_srtp" extension should call
  24. SSL_CTX_set_tlsext_use_srtp() to set its use for all SSL objects subsequently
  25. created from an SSL_CTX. Alternatively a client may call
  26. SSL_set_tlsext_use_srtp() to set its use for an individual SSL object. The
  27. B<profiles> parameters should point to a NUL-terminated, colon delimited list of
  28. SRTP protection profile names.
  29. The currently supported protection profile names are:
  30. =over 4
  31. =item SRTP_AES128_CM_SHA1_80
  32. This corresponds to SRTP_AES128_CM_HMAC_SHA1_80 defined in RFC5764.
  33. =item SRTP_AES128_CM_SHA1_32
  34. This corresponds to SRTP_AES128_CM_HMAC_SHA1_32 defined in RFC5764.
  35. =item SRTP_AEAD_AES_128_GCM
  36. This corresponds to the profile of the same name defined in RFC7714.
  37. =item SRTP_AEAD_AES_256_GCM
  38. This corresponds to the profile of the same name defined in RFC7714.
  39. =back
  40. Supplying an unrecognised protection profile name will result in an error.
  41. An OpenSSL server wishing to support the "use_srtp" extension should also call
  42. SSL_CTX_set_tlsext_use_srtp() or SSL_set_tlsext_use_srtp() to indicate the
  43. protection profiles that it is willing to negotiate.
  44. The currently configured list of protection profiles for either a client or a
  45. server can be obtained by calling SSL_get_srtp_profiles(). This returns a stack
  46. of SRTP_PROTECTION_PROFILE objects. The memory pointed to in the return value of
  47. this function should not be freed by the caller.
  48. After a handshake has been completed the negotiated SRTP protection profile (if
  49. any) can be obtained (on the client or the server) by calling
  50. SSL_get_selected_srtp_profile(). This function will return NULL if no SRTP
  51. protection profile was negotiated. The memory returned from this function should
  52. not be freed by the caller.
  53. If an SRTP protection profile has been successfully negotiated then the SRTP
  54. keying material (on both the client and server) should be obtained via a call to
  55. L<SSL_export_keying_material(3)>. This call should provide a label value of
  56. "EXTRACTOR-dtls_srtp" and a NULL context value (use_context is 0). The total
  57. length of keying material obtained should be equal to two times the sum of the
  58. master key length and the salt length as defined for the protection profile in
  59. use. This provides the client write master key, the server write master key, the
  60. client write master salt and the server write master salt in that order.
  61. =head1 RETURN VALUES
  62. SSL_CTX_set_tlsext_use_srtp() and SSL_set_tlsext_use_srtp() return 0 on success
  63. or 1 on error.
  64. SSL_get_srtp_profiles() returns a stack of SRTP_PROTECTION_PROFILE objects on
  65. success or NULL on error or if no protection profiles have been configured.
  66. SSL_get_selected_srtp_profile() returns a pointer to an SRTP_PROTECTION_PROFILE
  67. object if one has been negotiated or NULL otherwise.
  68. =head1 SEE ALSO
  69. L<ssl(7)>,
  70. L<SSL_export_keying_material(3)>
  71. =head1 COPYRIGHT
  72. Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
  73. Licensed under the Apache License 2.0 (the "License"). You may not use
  74. this file except in compliance with the License. You can obtain a copy
  75. in the file LICENSE in the source distribution or at
  76. L<https://www.openssl.org/source/license.html>.
  77. =cut