Add trezor bip39 code

This commit is contained in:
Jonathan "Duke" Leto
2020-09-04 22:50:23 -07:00
parent b3ff90ed6f
commit 820a48bb73
18 changed files with 3467 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#ifndef __MEMZERO_H__
#define __MEMZERO_H__
#include <stddef.h>
void memzero(void* const pnt, const size_t len);
#endif