From ea5940e7eb099feb693f53bb725fc55f3d5d5ef0 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 18 Sep 2009 01:04:02 +0200 Subject: lib/crypto: add aes_cfb8_encrypt() metze Autobuild-User: Stefan Metzmacher Autobuild-Date: Mon Jan 3 17:32:07 CET 2011 on sn-devel-104 --- lib/crypto/aes.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/crypto/aes.h') diff --git a/lib/crypto/aes.h b/lib/crypto/aes.h index e74d345215..a2b6c077e6 100644 --- a/lib/crypto/aes.h +++ b/lib/crypto/aes.h @@ -72,6 +72,10 @@ void AES_cbc_encrypt(const unsigned char *, unsigned char *, const unsigned long, const AES_KEY *, unsigned char *, int); +void aes_cfb8_encrypt(const uint8_t *in, uint8_t *out, + size_t length, const AES_KEY *key, + uint8_t *iv, int forward); + #ifdef __cplusplus } #endif -- cgit