diff options
Diffstat (limited to 'networking/tls_aes.h')
-rw-r--r-- | networking/tls_aes.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/networking/tls_aes.h b/networking/tls_aes.h new file mode 100644 index 000000000..c6791866a --- /dev/null +++ b/networking/tls_aes.h | |||
@@ -0,0 +1,10 @@ | |||
1 | /* | ||
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 | |||
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); | ||