1
mirror of https://github.com/hashcat/hashcat synced 2024-12-01 20:18:12 +01:00

Merge pull request #2256 from philsmd/master

Electrum 4/5: speedup by using w-NAF (Non-Adjacent Form)
This commit is contained in:
Jens Steube 2019-12-27 19:07:31 +01:00 committed by GitHub
commit 80a872121a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 574 additions and 397 deletions

File diff suppressed because it is too large Load Diff

View File

@ -30,7 +30,7 @@
typedef struct secp256k1
{
u32 xy[48]; // all 3 pairs of 32+32 bytes: x,y, x1,y1, x2,y2
u32 xy[96]; // pre-computed points: (x1,y1,-y1),(x3,y3,-y3),(x5,y5,-y5),(x7,y7,-y7)
} secp256k1_t;