mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
Remove aes.c in favor of mbedtls implementation.
Changelog
This commit is contained in:
parent
ec534305de
commit
996ed197fb
9 changed files with 34 additions and 1229 deletions
|
@ -60,9 +60,9 @@
|
|||
* mbedtls_platform_zeroize() to use a suitable implementation for their
|
||||
* platform and needs.
|
||||
*/
|
||||
static void *(* const volatile memset_func)(void *, int, size_t) = memset;
|
||||
//static void *(* const volatile memset_func)(void *, int, size_t) = memset;
|
||||
|
||||
void mbedtls_platform_zeroize(void *buf, size_t len) {
|
||||
memset_func(buf, 0, len);
|
||||
memset(buf, 0, len);
|
||||
}
|
||||
#endif /* MBEDTLS_PLATFORM_ZEROIZE_ALT */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue