- MD4/sha1
  - hmac-sha1
  - pbkdf2-hmac-sha1
  - pbkdf2-hmac-sha512
Remaining:
  - handling of long salt (SID)
  - (AES256/DES3) + the end
This commit is contained in:
Fist0urs
2017-05-01 22:21:54 +02:00
parent 73d48dcd26
commit 014278ab0e
4 changed files with 813 additions and 153 deletions

View File

@@ -1382,12 +1382,18 @@ typedef struct
/* Fist0urs */
typedef struct
{
/* dedicated to hmac-sha1 */
u32 ipad[5];
u32 opad[5];
u32 dgst[5];
u32 out[4];
u32 out[5];
/* dedicated to hmac-sha512 */
u64 ipad64[8];
u64 opad64[8];
u64 dgst64[16];
u64 out64[16];
} dpapimk_tmp_t;
/* Fist0urs_end */

File diff suppressed because it is too large Load Diff