mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-20 13:23:25 -07:00
Change mbedtls initializers to be compatible with older versions of gcc (#732)
* fix issue #731
This commit is contained in:
parent
a015ef3733
commit
aa0b1c431f
5 changed files with 9 additions and 9 deletions
|
@ -296,7 +296,7 @@ int mifare_ultra_auth(uint8_t *keybytes){
|
|||
|
||||
/// 3des2k
|
||||
|
||||
mbedtls_des3_context ctx = { 0x00 };
|
||||
mbedtls_des3_context ctx = { {0} };
|
||||
uint8_t random_a[8] = {1,1,1,1,1,1,1,1};
|
||||
uint8_t random_b[8] = {0x00};
|
||||
uint8_t enc_random_b[8] = {0x00};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue