1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 16:18:09 +00:00

Electrum 4/5: speedup by using w-NAF (Non-Adjacent Form)

This commit is contained in:
philsmd 2019-12-27 09:12:22 +01:00
parent 4d286d5dc7
commit 7ef92379d8
No known key found for this signature in database
GPG Key ID: 4F25D016D9D6A8AF
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;