aes ctr128 is verified

This commit is contained in:
Sukchan Lee 2017-03-08 12:10:39 +09:00
parent 17890be353
commit ae2b415c6d
3 changed files with 92 additions and 3 deletions

View file

@ -34,6 +34,10 @@ CORE_DECLARE(status_t) aes_cbc_decrypt(const c_uint8_t *key,
const c_uint8_t *in, const c_uint32_t inlen,
c_uint8_t *out, c_uint32_t *outlen);
CORE_DECLARE(status_t) aes_ctr128_encrypt(const c_uint8_t *key,
c_uint8_t *ivec, const c_uint8_t *in, const c_uint32_t len,
c_uint8_t *out);
#ifdef __cplusplus
}
#endif /* __cplusplus */