| 273 | } |
| 274 | |
| 275 | AVDES *av_des_alloc(void) |
| 276 | { |
| 277 | return av_mallocz(sizeof(struct AVDES)); |
| 278 | } |
| 279 | |
| 280 | int av_des_init(AVDES *d, const uint8_t *key, int key_bits, av_unused int decrypt) { |
| 281 | if (key_bits != 64 && key_bits != 192) |
no test coverage detected