blob: c6791866aef7c56f8542d1ca9f28225d27f805bf [file] [log] [blame]
Denys Vlasenkob7e9ae62017-01-18 17:20:27 +01001/*
2 * Copyright (C) 2017 Denys Vlasenko
3 *
4 * Licensed under GPLv2, see file LICENSE in this source tree.
5 *
6 * Selected few declarations for AES.
7 */
8
Denys Vlasenkoc31b54f2017-02-04 16:23:49 +01009void aes_cbc_encrypt(const void *key, int klen, void *iv, const void *data, size_t len, void *dst);
10void aes_cbc_decrypt(const void *key, int klen, void *iv, const void *data, size_t len, void *dst);