Skip to content
Snippets Groups Projects
Commit eb11e662 authored by Alexander Vasiljev's avatar Alexander Vasiljev Committed by Gregory Nutt
Browse files

Modifications to the crypto API needed for LPC43xx.

parent b43fcd6f
No related branches found
No related tags found
No related merge requests found
......@@ -90,6 +90,9 @@ int up_cryptoinitialize(void);
int up_aesinitialize(void);
int aes_cypher(FAR void *out, FAR const void *in, uint32_t size, FAR const void *iv,
FAR const void *key, uint32_t keysize, int mode, int encrypt);
int aes_init(FAR const void *iv, FAR const void *key, uint32_t keysize, int mode,
int encrypt);
int aes_update(FAR const void *out, uint32_t *outl, FAR const void *in, uint32_t inl);
#endif
#if defined(CONFIG_CRYPTO_ALGTEST)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment