/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 | 7 /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/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/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
D | mod.rs | 28 pub use self::srtp::*; 64 mod srtp; module
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/ |
D | lib.rs | 61 pub use self::srtp::*; 91 mod srtp; module
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
D | lib.rs | 180 pub mod srtp; module
|
/third_party/ffmpeg/libavformat/ |
D | rtpdec.h | 163 struct SRTPContext srtp; member
|
D | rtpdec.c | 630 if (!ff_srtp_set_crypto(&s->srtp, suite, params)) in ff_rtp_parse_set_crypto() 948 if (s->srtp_enabled && bufptr && ff_srtp_decrypt(&s->srtp, *bufptr, &len) < 0) in ff_rtp_parse_packet() 960 ff_srtp_free(&s->srtp); in ff_rtp_parse_close()
|
D | Makefile | 70 OBJS-$(CONFIG_SRTP) += srtp.o 667 OBJS-$(CONFIG_SRTP_PROTOCOL) += srtpproto.o srtp.o 732 TESTPROGS-$(CONFIG_SRTP) += srtp
|
/third_party/openssl/test/recipes/30-test_evp_data/ |
D | evpciph_aria.txt | 197 Title = ARIA CCM test vectors from IETF draft-ietf-avtcore-aria-srtp-02
|
/third_party/openssl/doc/man3/ |
D | SSL_CTX_set_tlsext_use_srtp.pod | 13 #include <openssl/srtp.h>
|
/third_party/openssl/crypto/err/ |
D | openssl.txt | 1278 SSL_R_BAD_SRTP_MKI_VALUE:352:bad srtp mki value 1279 SSL_R_BAD_SRTP_PROTECTION_PROFILE_LIST:353:bad srtp protection profile list 1337 SSL_R_EMPTY_SRTP_PROTECTION_PROFILE_LIST:354:empty srtp protection profile list 1425 SSL_R_NO_SRTP_PROFILES:359:no srtp profiles 1473 SSL_R_SRTP_COULD_NOT_ALLOCATE_PROFILES:362:srtp could not allocate profiles 1475 srtp protection profile list too long 1476 SSL_R_SRTP_UNKNOWN_PROTECTION_PROFILE:364:srtp unknown protection profile 1533 SSL_R_USE_SRTP_NOT_NEGOTIATED:369:use srtp not negotiated
|
/third_party/node/deps/openssl/openssl/crypto/err/ |
D | openssl.txt | 1280 SSL_R_BAD_SRTP_MKI_VALUE:352:bad srtp mki value 1281 SSL_R_BAD_SRTP_PROTECTION_PROFILE_LIST:353:bad srtp protection profile list 1339 SSL_R_EMPTY_SRTP_PROTECTION_PROFILE_LIST:354:empty srtp protection profile list 1429 SSL_R_NO_SRTP_PROFILES:359:no srtp profiles 1477 SSL_R_SRTP_COULD_NOT_ALLOCATE_PROFILES:362:srtp could not allocate profiles 1479 srtp protection profile list too long 1480 SSL_R_SRTP_UNKNOWN_PROTECTION_PROFILE:364:srtp unknown protection profile 1537 SSL_R_USE_SRTP_NOT_NEGOTIATED:369:use srtp not negotiated
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/ |
D | mod.rs | 23 use crate::srtp::SrtpProfileId;
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
D | mod.rs | 71 use crate::srtp::{SrtpProtectionProfile, SrtpProtectionProfileRef};
|
/third_party/ffmpeg/ |
D | BUILD.gn | 1471 # "//third_party/ffmpeg/libavformat/srtp.c",
|
/third_party/node/deps/openssl/openssl/Configurations/ |
D | unix-Makefile.tmpl | 1261 include/openssl/srtp.h
|
/third_party/openssl/Configurations/ |
D | unix-Makefile.tmpl | 1260 include/openssl/srtp.h
|
/third_party/openssl/ |
D | INSTALL.md | 845 ### no-srtp
|
/third_party/node/deps/openssl/openssl/ |
D | INSTALL.md | 857 ### no-srtp
|
/third_party/ffmpeg/doc/ |
D | protocols.texi | 1709 @section srtp
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
D | ssl.h.in | 944 # include <openssl/srtp.h> /* Support for the use_srtp extension */
|
/third_party/openssl/include/openssl/ |
D | ssl.h.in | 944 # include <openssl/srtp.h> /* Support for the use_srtp extension */
|