Preparation for WPA/WPA2 AES-CMAC: works till PMK

This commit is contained in:
jsteube
2017-07-20 12:46:18 +02:00
parent dc27b28b03
commit 03bb234045
16 changed files with 509 additions and 29 deletions
+11
View File
@@ -558,6 +558,16 @@ typedef struct wpapmk_tmp
} wpapmk_tmp_t;
typedef struct wpaaes_tmp
{
u32 ipad[8];
u32 opad[8];
u32 dgst[8];
u32 out[8];
} wpaaes_tmp_t;
typedef struct bitcoin_wallet_tmp
{
u64 dgst[8];
@@ -1599,6 +1609,7 @@ typedef enum kern_type
KERN_TYPE_JKS_SHA1 = 15500,
KERN_TYPE_ETHEREUM_PBKDF2 = 15600,
KERN_TYPE_ETHEREUM_SCRYPT = 15700,
KERN_TYPE_WPAAES = 15800,
KERN_TYPE_PLAINTEXT = 99999,
} kern_type_t;