mirror of
https://github.com/apache/nuttx.git
synced 2026-05-27 19:36:35 +08:00
Modifications to the crypto API needed for LPC43xx.
This commit is contained in:
committed by
Gregory Nutt
parent
b43fcd6f99
commit
eb11e662db
@@ -90,6 +90,9 @@ int up_cryptoinitialize(void);
|
|||||||
int up_aesinitialize(void);
|
int up_aesinitialize(void);
|
||||||
int aes_cypher(FAR void *out, FAR const void *in, uint32_t size, FAR const void *iv,
|
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);
|
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
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_CRYPTO_ALGTEST)
|
#if defined(CONFIG_CRYPTO_ALGTEST)
|
||||||
|
|||||||
Reference in New Issue
Block a user