Skip to content

Commit

Permalink
- Added hash-mode 15600 = Ethereum Wallet, PBKDF2-HMAC-SHA256
Browse files Browse the repository at this point in the history
- Added hash-mode 15700 = Ethereum Wallet, PBKDF2-SCRYPT
Resolves hashcat#1227
Resolves hashcat#1228
  • Loading branch information
jsteube authored and DoZ10 committed Jun 6, 2017
1 parent ab2610d commit c960ad2
Show file tree
Hide file tree
Showing 13 changed files with 2,671 additions and 13 deletions.
14 changes: 14 additions & 0 deletions OpenCL/inc_types.cl
Original file line number Diff line number Diff line change
Expand Up @@ -1063,6 +1063,20 @@ typedef struct

} dpapimk_t;

typedef struct ethereum_pbkdf2
{
u32 salt_buf[16];
u32 ciphertext[8];

} ethereum_pbkdf2_t;

typedef struct ethereum_scrypt
{
u32 salt_buf[16];
u32 ciphertext[8];

} ethereum_scrypt_t;

typedef struct
{
u32 digest[4];
Expand Down
Loading

0 comments on commit c960ad2

Please sign in to comment.