| 491 | } |
| 492 | |
| 493 | srtp_err_status_t cipher_array_delete(srtp_cipher_t *cipher_array[], |
| 494 | int num_cipher) |
| 495 | { |
| 496 | int i; |
| 497 | |
| 498 | for (i = 0; i < num_cipher; i++) { |
| 499 | srtp_cipher_dealloc(cipher_array[i]); |
| 500 | } |
| 501 | |
| 502 | srtp_crypto_free(cipher_array); |
| 503 | |
| 504 | return srtp_err_status_ok; |
| 505 | } |
| 506 | |
| 507 | /* |
| 508 | * cipher_array_bits_per_second(c, l, t) computes (an estimate of) the |
no test coverage detected