mirror of https://github.com/ARMmbed/mbed-os.git
[NUC472/M487] Add comment for crypto_zeroize
parent
add839c808
commit
e1fbf0f6a7
|
|
@ -35,6 +35,8 @@ extern volatile int g_AES_done;
|
|||
void crypto_init(void);
|
||||
void crypto_uninit(void);
|
||||
|
||||
/* Clear buffer to zero
|
||||
* Implementation that should never be optimized out by the compiler */
|
||||
void crypto_zeroize(void *v, size_t n);
|
||||
|
||||
/* Acquire/release ownership of AES H/W */
|
||||
|
|
|
|||
|
|
@ -35,6 +35,8 @@ extern volatile int g_AES_done;
|
|||
void crypto_init(void);
|
||||
void crypto_uninit(void);
|
||||
|
||||
/* Clear buffer to zero
|
||||
* Implementation that should never be optimized out by the compiler */
|
||||
void crypto_zeroize(void *v, size_t n);
|
||||
|
||||
/* Acquire/release ownership of AES H/W */
|
||||
|
|
|
|||
Loading…
Reference in New Issue