Searched refs:srtp_t (Results 1 – 8 of 8) sorted by relevance
/external/libsrtp2/include/ |
D | srtp.h | 361 typedef srtp_ctx_t *srtp_t; typedef 418 srtp_err_status_t srtp_protect(srtp_t ctx, void *rtp_hdr, int *len_ptr); 514 srtp_err_status_t srtp_unprotect(srtp_t ctx, void *srtp_hdr, int *len_ptr); 562 srtp_err_status_t srtp_unprotect_mki(srtp_t ctx, 588 srtp_err_status_t srtp_create(srtp_t *session, const srtp_policy_t *policy); 604 srtp_err_status_t srtp_add_stream(srtp_t session, const srtp_policy_t *policy); 627 srtp_err_status_t srtp_remove_stream(srtp_t session, unsigned int ssrc); 653 srtp_err_status_t srtp_update(srtp_t session, const srtp_policy_t *policy); 676 srtp_err_status_t srtp_update_stream(srtp_t session, 1165 srtp_err_status_t srtp_dealloc(srtp_t s); [all …]
|
D | srtp_priv.h | 79 srtp_stream_t srtp_get_stream(srtp_t srtp, uint32_t ssrc);
|
/external/libsrtp2/fuzzer/ |
D | fuzzer.h | 27 *fuzz_srtp_func)(srtp_t, void *, int *, uint8_t, unsigned int); 29 typedef srtp_err_status_t (*fuzz_srtp_get_length_func)(const srtp_t, 45 static srtp_err_status_t fuzz_srtp_protect(srtp_t srtp_sender, 50 static srtp_err_status_t fuzz_srtp_unprotect(srtp_t srtp_sender, 55 static srtp_err_status_t fuzz_srtp_protect_rtcp(srtp_t srtp_sender, 60 static srtp_err_status_t fuzz_srtp_unprotect_rtcp(srtp_t srtp_sender, 65 static srtp_err_status_t fuzz_srtp_protect_mki(srtp_t srtp_sender, 70 static srtp_err_status_t fuzz_srtp_protect_rtcp_mki(srtp_t srtp_sender, 75 static srtp_err_status_t fuzz_srtp_unprotect_mki(srtp_t srtp_sender, 80 static srtp_err_status_t fuzz_srtp_unprotect_rtcp_mki(srtp_t srtp_sender, [all …]
|
D | fuzzer.c | 186 static srtp_err_status_t fuzz_srtp_protect(srtp_t srtp_sender, in fuzz_srtp_protect() 195 static srtp_err_status_t fuzz_srtp_unprotect(srtp_t srtp_sender, in fuzz_srtp_unprotect() 204 static srtp_err_status_t fuzz_srtp_protect_rtcp(srtp_t srtp_sender, in fuzz_srtp_protect_rtcp() 213 static srtp_err_status_t fuzz_srtp_unprotect_rtcp(srtp_t srtp_sender, in fuzz_srtp_unprotect_rtcp() 222 static srtp_err_status_t fuzz_srtp_protect_mki(srtp_t srtp_sender, in fuzz_srtp_protect_mki() 231 static srtp_err_status_t fuzz_srtp_protect_rtcp_mki(srtp_t srtp_sender, in fuzz_srtp_protect_rtcp_mki() 240 static srtp_err_status_t fuzz_srtp_unprotect_mki(srtp_t srtp_sender, in fuzz_srtp_unprotect_mki() 249 static srtp_err_status_t fuzz_srtp_unprotect_rtcp_mki(srtp_t srtp_sender, in fuzz_srtp_unprotect_rtcp_mki() 260 static srtp_err_status_t fuzz_srtp_get_protect_length(const srtp_t srtp_ctx, in fuzz_srtp_get_protect_length() 269 const srtp_t srtp_ctx, in fuzz_srtp_get_protect_rtcp_length() [all …]
|
/external/libsrtp2/test/ |
D | srtp_driver.c | 115 srtp_err_status_t srtp_session_print_policy(srtp_t srtp); 819 srtp_t srtp; in srtp_bits_per_second() 939 srtp_err_status_t srtp_test_call_protect(srtp_t srtp_sender, in srtp_test_call_protect() 951 srtp_err_status_t srtp_test_call_protect_rtcp(srtp_t srtp_sender, in srtp_test_call_protect_rtcp() 963 srtp_err_status_t srtp_test_call_unprotect(srtp_t srtp_sender, in srtp_test_call_unprotect() 975 srtp_err_status_t srtp_test_call_unprotect_rtcp(srtp_t srtp_sender, in srtp_test_call_unprotect_rtcp() 992 srtp_t srtp_sender; in srtp_test() 993 srtp_t srtp_rcvr; in srtp_test() 1223 srtp_t srtcp_sender; in srtcp_test() 1224 srtp_t srtcp_rcvr; in srtcp_test() [all …]
|
D | dtls_srtp_driver.c | 128 srtp_t s; in test_dtls_srtp()
|
/external/libsrtp2/srtp/ |
D | srtp.c | 2783 srtp_stream_ctx_t *srtp_get_stream(srtp_t srtp, uint32_t ssrc) in srtp_get_stream() 2799 srtp_err_status_t srtp_dealloc(srtp_t session) in srtp_dealloc() 2833 srtp_err_status_t srtp_add_stream(srtp_t session, const srtp_policy_t *policy) in srtp_add_stream() 2894 srtp_err_status_t srtp_create(srtp_t *session, /* handle for session */ in srtp_create() 2933 srtp_err_status_t srtp_remove_stream(srtp_t session, uint32_t ssrc) in srtp_remove_stream() 2966 srtp_err_status_t srtp_update(srtp_t session, const srtp_policy_t *policy) in srtp_update() 2988 static srtp_err_status_t update_template_streams(srtp_t session, in update_template_streams() 3085 static srtp_err_status_t update_stream(srtp_t session, in update_stream() 3124 srtp_err_status_t srtp_update_stream(srtp_t session, in srtp_update_stream() 3491 srtp_t ctx, in srtp_protect_rtcp_aead() [all …]
|
/external/libsrtp2/ |
D | README.md | 124 originating. The typedef `srtp_t` points to a structure holding all of 126 stream contexts associated with a single `srtp_t`. A stream context 127 cannot exist indepent from an `srtp_t`, though of course an `srtp_t` can 433 srtp_t session;
|