| 71 | } |
| 72 | |
| 73 | srtp_err_status_t srtp_cipher_dealloc(srtp_cipher_t *c) |
| 74 | { |
| 75 | if (!c || !c->type) { |
| 76 | return (srtp_err_status_bad_param); |
| 77 | } |
| 78 | return (((c)->type)->dealloc(c)); |
| 79 | } |
| 80 | |
| 81 | srtp_err_status_t srtp_cipher_init(srtp_cipher_t *c, const uint8_t *key) |
| 82 | { |
no outgoing calls