/third_party/ffmpeg/libavformat/tests/ |
D | srtp.c | 103 static int test_decrypt(struct SRTPContext *srtp, const uint8_t *in, int len, in test_decrypt() argument 107 if (!ff_srtp_decrypt(srtp, out, &len)) { in test_decrypt() 142 struct SRTPContext srtp = { 0 }; in main() local 144 ff_srtp_set_crypto(&srtp, aes128_80_suite, aes128_80_key); in main() 145 len = test_decrypt(&srtp, rtp_aes128_80, sizeof(rtp_aes128_80), buf); in main() 149 test_decrypt(&srtp, rtcp_aes128_80, sizeof(rtcp_aes128_80), buf); in main() 153 ff_srtp_free(&srtp); in main() 155 memset(&srtp, 0, sizeof(srtp)); // Clear the context in main() 156 ff_srtp_set_crypto(&srtp, aes128_32_suite, aes128_32_key); in main() 157 test_decrypt(&srtp, rtp_aes128_32, sizeof(rtp_aes128_32), buf); in main() [all …]
|
D | .gitignore | 6 /srtp
|
/third_party/gn/src/gn/format_test_data/ |
D | 062.gn | 105 "srtp/crypto/include/xfm.h", 108 "srtp/srtp/ekt.c", 109 "srtp/srtp/srtp.c", 110 "srtp/crypto/rng/prng.c", 111 "srtp/crypto/rng/rand_source.c",
|
D | 062.golden | 108 "srtp/crypto/include/xfm.h", 111 "srtp/crypto/rng/prng.c", 112 "srtp/crypto/rng/rand_source.c", 113 "srtp/srtp/ekt.c", 114 "srtp/srtp/srtp.c",
|
/third_party/gstreamer/gstplugins_bad/ext/srtp/ |
D | meson.build | 10 if get_option('srtp').disabled() 19 …if not srtp_dep.found() and cc.has_header_symbol('srtp/srtp.h', 'crypto_policy_set_aes_gcm_128_16_… 20 srtp_dep = cc.find_library('srtp', required : false) build 23 if not srtp_dep.found() and get_option('srtp').enabled() 24 error('srtp plugin enabled but libsrtp not found')
|
D | gstsrtpplugin.c | 43 srtp,
|
/third_party/ffmpeg/tests/fate/ |
D | libavformat.mak | 13 FATE_LIBAVFORMAT-$(CONFIG_SRTP) += fate-srtp 14 fate-srtp: libavformat/tests/srtp$(EXESUF) 15 fate-srtp: CMD = run libavformat/tests/srtp$(EXESUF)
|
/third_party/gstreamer/gstplugins_base/tests/check/libs/ |
D | mikey.c | 42 GstMIKEYMapSRTP srtp; in GST_START_TEST() local 91 srtp.policy = 1; in GST_START_TEST() 92 srtp.ssrc = 0x12345678; in GST_START_TEST() 93 srtp.roc = 0; in GST_START_TEST() 94 fail_unless (gst_mikey_message_insert_cs_srtp (msg, 0, &srtp)); in GST_START_TEST()
|
/third_party/gstreamer/gstplugins_bad/ext/ |
D | meson.build | 59 subdir('srtp') subdir
|
/third_party/ffmpeg/libavformat/ |
D | rtpdec.h | 162 struct SRTPContext srtp; member
|
D | rtpdec.c | 621 if (!ff_srtp_set_crypto(&s->srtp, suite, params)) in ff_rtp_parse_set_crypto() 910 if (s->srtp_enabled && bufptr && ff_srtp_decrypt(&s->srtp, *bufptr, &len) < 0) in ff_rtp_parse_packet() 922 ff_srtp_free(&s->srtp); in ff_rtp_parse_close()
|
D | Makefile | 63 OBJS-$(CONFIG_SRTP) += srtp.o 643 OBJS-$(CONFIG_SRTP_PROTOCOL) += srtpproto.o srtp.o 689 TESTPROGS-$(CONFIG_SRTP) += srtp
|
/third_party/gstreamer/gstplugins_bad/tests/check/elements/ |
D | srtp.c | 363 GST_CHECK_MAIN (srtp);
|
/third_party/openssl/doc/man3/ |
D | SSL_CTX_set_tlsext_use_srtp.pod | 13 #include <openssl/srtp.h>
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/sdp/ |
D | gstmikey.c | 847 const GstMIKEYMapSRTP *srtp = gst_mikey_message_get_cs_srtp (msg, i); in mikey_message_copy() local 848 gst_mikey_message_add_cs_srtp (copy, srtp->policy, srtp->ssrc, srtp->roc); in mikey_message_copy()
|
/third_party/openssl/crypto/err/ |
D | openssl.txt | 2642 SSL_R_BAD_SRTP_MKI_VALUE:352:bad srtp mki value 2643 SSL_R_BAD_SRTP_PROTECTION_PROFILE_LIST:353:bad srtp protection profile list 2700 SSL_R_EMPTY_SRTP_PROTECTION_PROFILE_LIST:354:empty srtp protection profile list 2786 SSL_R_NO_SRTP_PROFILES:359:no srtp profiles 2832 SSL_R_SRTP_COULD_NOT_ALLOCATE_PROFILES:362:srtp could not allocate profiles 2834 srtp protection profile list too long 2835 SSL_R_SRTP_UNKNOWN_PROTECTION_PROFILE:364:srtp unknown protection profile 2893 SSL_R_USE_SRTP_NOT_NEGOTIATED:369:use srtp not negotiated
|
/third_party/grpc/templates/src/objective-c/ |
D | BoringSSL-GRPC.podspec.template | 222 #include "srtp.h"
|
/third_party/gstreamer/gstplugins_bad/ |
D | meson_options.txt | 154 option('srtp', type : 'feature', value : 'auto', description : 'Secure RTP codec plugin') feature
|
D | ChangeLog | 11964 * ext/srtp/gstsrtp.c: 11965 * ext/srtp/gstsrtpdec.c: 11966 * ext/srtp/gstsrtpdec.h: 11967 * ext/srtp/gstsrtpelement.c: 11968 * ext/srtp/gstsrtpelements.h: 11969 * ext/srtp/gstsrtpenc.c: 11970 * ext/srtp/gstsrtpenc.h: 11971 * ext/srtp/gstsrtpplugin.c: 11972 * ext/srtp/meson.build: 11973 srtp: allow per feature registration [all …]
|
/third_party/grpc/src/objective-c/ |
D | BoringSSL-GRPC.podspec | 192 #include "srtp.h"
|
/third_party/openssl/test/recipes/30-test_evp_data/ |
D | evpciph.txt | 2305 Title = ARIA CCM test vectors from IETF draft-ietf-avtcore-aria-srtp-02
|
/third_party/ffmpeg/ |
D | BUILD.gn | 1331 # "//third_party/ffmpeg/libavformat/srtp.c",
|
/third_party/openssl/ |
D | INSTALL | 480 no-srtp
|
/third_party/ffmpeg/doc/ |
D | protocols.texi | 1618 @section srtp
|
/third_party/gstreamer/gstplugins_good/ |
D | ChangeLog | 26937 If the srtp elements are not present, post a message on the bus 31675 rtspsrc: make all srtp encoder properties explicit 32939 rtspsrc: add srtp rollover counters from mikey crypto sessions 52477 rtspsrc: srtp handling 55173 Also, rtpbin now allows application/x-srtp in its pads.
|