2 * Copyright (C) 2017 Denys Vlasenko
4 * Licensed under GPLv2, see file LICENSE in this source tree.
6 * Selected few declarations for AES.
9 void aes_cbc_encrypt(const void *key, int klen, void *iv, const void *data, size_t len, void *dst);
10 void aes_cbc_decrypt(const void *key, int klen, void *iv, const void *data, size_t len, void *dst);