mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-01-25 02:02:57 -03:00
implement worker_batch_pass
This commit is contained in:
parent
6f7e220b60
commit
9bc52c5fb7
8 changed files with 157 additions and 8 deletions
|
@ -452,5 +452,5 @@ worker.c.o: ed25519/ed25519-donna/ed25519-donna-impl-sse2.h
|
||||||
worker.c.o: ed25519/ed25519-donna/ed25519-donna-impl-base.h ioutil.h common.h
|
worker.c.o: ed25519/ed25519-donna/ed25519-donna-impl-base.h ioutil.h common.h
|
||||||
worker.c.o: yaml.h worker.h filters.h filters_worker.inc.h
|
worker.c.o: yaml.h worker.h filters.h filters_worker.inc.h
|
||||||
worker.c.o: filters_common.inc.h worker_slow.inc.h worker_fast.inc.h
|
worker.c.o: filters_common.inc.h worker_slow.inc.h worker_fast.inc.h
|
||||||
worker.c.o: worker_fast_pass.inc.h worker_batch.inc.h
|
worker.c.o: worker_fast_pass.inc.h worker_batch.inc.h worker_batch_pass.inc.h
|
||||||
yaml.c.o: types.h yaml.h ioutil.h base32.h base64.h common.h
|
yaml.c.o: types.h yaml.h ioutil.h base32.h base64.h common.h
|
||||||
|
|
3
main.c
3
main.c
|
@ -516,7 +516,8 @@ int main(int argc,char **argv)
|
||||||
#endif
|
#endif
|
||||||
tret = pthread_create(&VEC_BUF(threads,i),0,
|
tret = pthread_create(&VEC_BUF(threads,i),0,
|
||||||
#ifdef PASSPHRASE
|
#ifdef PASSPHRASE
|
||||||
deterministic ? worker_fast_pass :
|
deterministic ? (
|
||||||
|
batchkeygen ? worker_batch_pass : worker_fast_pass) :
|
||||||
#endif
|
#endif
|
||||||
batchkeygen ? worker_batch :
|
batchkeygen ? worker_batch :
|
||||||
(fastkeygen ? worker_fast : worker_slow),tp);
|
(fastkeygen ? worker_fast : worker_slow),tp);
|
||||||
|
|
13
worker.c
13
worker.c
|
@ -210,8 +210,17 @@ static void reseedright(u8 sk[SECRET_LEN])
|
||||||
#include "worker_fast_pass.inc.h"
|
#include "worker_fast_pass.inc.h"
|
||||||
|
|
||||||
|
|
||||||
#ifndef BATCHNUM
|
#if !defined(BATCHNUM)
|
||||||
#define BATCHNUM 2048
|
#define BATCHNUM 2048
|
||||||
|
#else
|
||||||
|
#if BATCHNUM & (BATCHNUM - 1)
|
||||||
|
#error "BATCHNUM must be power of 2"
|
||||||
|
#endif
|
||||||
|
#if (BATCHNUM * 8) > DETERMINISTIC_LOOP_COUNT
|
||||||
|
#error "BATCHNUM is too large"
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "worker_batch.inc.h"
|
#include "worker_batch.inc.h"
|
||||||
|
|
||||||
|
#include "worker_batch_pass.inc.h"
|
||||||
|
|
1
worker.h
1
worker.h
|
@ -43,4 +43,5 @@ extern void *worker_fast(void *task);
|
||||||
extern void *worker_batch(void *task);
|
extern void *worker_batch(void *task);
|
||||||
#ifdef PASSPHRASE
|
#ifdef PASSPHRASE
|
||||||
extern void *worker_fast_pass(void *task);
|
extern void *worker_fast_pass(void *task);
|
||||||
|
extern void *worker_batch_pass(void *task);
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -44,7 +44,9 @@ initseed:
|
||||||
#ifdef STATISTICS
|
#ifdef STATISTICS
|
||||||
++st->numrestart.v;
|
++st->numrestart.v;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
randombytes(seed,sizeof(seed));
|
randombytes(seed,sizeof(seed));
|
||||||
|
|
||||||
ed25519_seckey_expand(sk,seed);
|
ed25519_seckey_expand(sk,seed);
|
||||||
|
|
||||||
ge_scalarmult_base(&ge_public,sk);
|
ge_scalarmult_base(&ge_public,sk);
|
||||||
|
|
133
worker_batch_pass.inc.h
Normal file
133
worker_batch_pass.inc.h
Normal file
|
@ -0,0 +1,133 @@
|
||||||
|
|
||||||
|
#ifdef PASSPHRASE
|
||||||
|
void *worker_batch_pass(void *task)
|
||||||
|
{
|
||||||
|
union pubonionunion pubonion;
|
||||||
|
u8 * const pk = &pubonion.raw[PKPREFIX_SIZE];
|
||||||
|
u8 secret[SKPREFIX_SIZE + SECRET_LEN];
|
||||||
|
u8 * const sk = &secret[SKPREFIX_SIZE];
|
||||||
|
u8 seed[SEED_LEN];
|
||||||
|
u8 hashsrc[checksumstrlen + PUBLIC_LEN + 1];
|
||||||
|
u8 wpk[PUBLIC_LEN + 1];
|
||||||
|
ge_p3 ge_public;
|
||||||
|
char *sname;
|
||||||
|
|
||||||
|
// state to keep batch data
|
||||||
|
ge_p3 ge_batch[BATCHNUM];
|
||||||
|
fe *(batchgez)[BATCHNUM];
|
||||||
|
fe tmp_batch[BATCHNUM];
|
||||||
|
bytes32 pk_batch[BATCHNUM];
|
||||||
|
|
||||||
|
size_t counter,oldcounter;
|
||||||
|
size_t i;
|
||||||
|
|
||||||
|
#ifdef STATISTICS
|
||||||
|
struct statstruct *st = (struct statstruct *)task;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// set up right pointers
|
||||||
|
for (size_t b = 0;b < BATCHNUM;++b)
|
||||||
|
batchgez[b] = &GEZ(ge_batch[b]);
|
||||||
|
|
||||||
|
PREFILTER
|
||||||
|
|
||||||
|
memcpy(secret,skprefix,SKPREFIX_SIZE);
|
||||||
|
wpk[PUBLIC_LEN] = 0;
|
||||||
|
memset(&pubonion,0,sizeof(pubonion));
|
||||||
|
memcpy(pubonion.raw,pkprefix,PKPREFIX_SIZE);
|
||||||
|
// write version later as it will be overwritten by hash
|
||||||
|
memcpy(hashsrc,checksumstr,checksumstrlen);
|
||||||
|
hashsrc[checksumstrlen + PUBLIC_LEN] = 0x03; // version
|
||||||
|
|
||||||
|
sname = makesname();
|
||||||
|
|
||||||
|
initseed:
|
||||||
|
#ifdef STATISTICS
|
||||||
|
++st->numrestart.v;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
pthread_mutex_lock(&determseed_mutex);
|
||||||
|
for (int i = 0; i < SEED_LEN; i++)
|
||||||
|
if (++determseed[i])
|
||||||
|
break;
|
||||||
|
memcpy(seed, determseed, SEED_LEN);
|
||||||
|
pthread_mutex_unlock(&determseed_mutex);
|
||||||
|
|
||||||
|
ed25519_seckey_expand(sk,seed);
|
||||||
|
|
||||||
|
ge_scalarmult_base(&ge_public,sk);
|
||||||
|
|
||||||
|
for (counter = oldcounter = 0;counter < DETERMINISTIC_LOOP_COUNT;counter += 8*BATCHNUM) {
|
||||||
|
ge_p1p1 sum;
|
||||||
|
|
||||||
|
if (unlikely(endwork))
|
||||||
|
goto end;
|
||||||
|
|
||||||
|
|
||||||
|
for (size_t b = 0;b < BATCHNUM;++b) {
|
||||||
|
ge_batch[b] = ge_public;
|
||||||
|
ge_add(&sum,&ge_public,&ge_eightpoint);
|
||||||
|
ge_p1p1_to_p3(&ge_public,&sum);
|
||||||
|
}
|
||||||
|
// NOTE: leaves unfinished one bit at the very end
|
||||||
|
ge_p3_batchtobytes_destructive_1(pk_batch,ge_batch,batchgez,tmp_batch,BATCHNUM);
|
||||||
|
|
||||||
|
#ifdef STATISTICS
|
||||||
|
st->numcalc.v += BATCHNUM;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
for (size_t b = 0;b < BATCHNUM;++b) {
|
||||||
|
DOFILTER(i,pk_batch[b],{
|
||||||
|
if (numwords > 1) {
|
||||||
|
shiftpk(wpk,pk_batch[b],filter_len(i));
|
||||||
|
size_t j;
|
||||||
|
for (int w = 1;;) {
|
||||||
|
DOFILTER(j,wpk,goto secondfind);
|
||||||
|
goto next;
|
||||||
|
secondfind:
|
||||||
|
if (++w >= numwords)
|
||||||
|
break;
|
||||||
|
shiftpk(wpk,wpk,filter_len(j));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// found!
|
||||||
|
// finish it up
|
||||||
|
ge_p3_batchtobytes_destructive_finish(pk_batch[b],&ge_batch[b]);
|
||||||
|
// copy public key
|
||||||
|
memcpy(pk,pk_batch[b],PUBLIC_LEN);
|
||||||
|
// update secret key with counter
|
||||||
|
addsztoscalar32(sk,counter + (b * 8) - oldcounter);
|
||||||
|
oldcounter = counter + (b * 8);
|
||||||
|
// sanity check
|
||||||
|
if ((sk[0] & 248) != sk[0] || ((sk[31] & 63) | 64) != sk[31])
|
||||||
|
goto initseed;
|
||||||
|
|
||||||
|
// reseed right half of key to avoid reuse, it won't change public key anyway
|
||||||
|
reseedright(sk);
|
||||||
|
|
||||||
|
ADDNUMSUCCESS;
|
||||||
|
|
||||||
|
// calc checksum
|
||||||
|
memcpy(&hashsrc[checksumstrlen],pk,PUBLIC_LEN);
|
||||||
|
FIPS202_SHA3_256(hashsrc,sizeof(hashsrc),&pk[PUBLIC_LEN]);
|
||||||
|
// version byte
|
||||||
|
pk[PUBLIC_LEN + 2] = 0x03;
|
||||||
|
// full name
|
||||||
|
strcpy(base32_to(&sname[direndpos],pk,PUBONION_LEN),".onion");
|
||||||
|
onionready(sname,secret,pubonion.raw);
|
||||||
|
pk[PUBLIC_LEN] = 0; // what is this for?
|
||||||
|
});
|
||||||
|
next:
|
||||||
|
;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
goto initseed;
|
||||||
|
|
||||||
|
end:
|
||||||
|
free(sname);
|
||||||
|
POSTFILTER
|
||||||
|
sodium_memzero(secret,sizeof(secret));
|
||||||
|
sodium_memzero(seed,sizeof(seed));
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif // PASSPHRASE
|
|
@ -36,7 +36,9 @@ initseed:
|
||||||
#ifdef STATISTICS
|
#ifdef STATISTICS
|
||||||
++st->numrestart.v;
|
++st->numrestart.v;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
randombytes(seed,sizeof(seed));
|
randombytes(seed,sizeof(seed));
|
||||||
|
|
||||||
ed25519_seckey_expand(sk,seed);
|
ed25519_seckey_expand(sk,seed);
|
||||||
|
|
||||||
ge_scalarmult_base(&ge_public,sk);
|
ge_scalarmult_base(&ge_public,sk);
|
||||||
|
|
|
@ -34,17 +34,18 @@ void *worker_fast_pass(void *task)
|
||||||
sname = makesname();
|
sname = makesname();
|
||||||
|
|
||||||
initseed:
|
initseed:
|
||||||
|
#ifdef STATISTICS
|
||||||
|
++st->numrestart.v;
|
||||||
|
#endif
|
||||||
|
|
||||||
pthread_mutex_lock(&determseed_mutex);
|
pthread_mutex_lock(&determseed_mutex);
|
||||||
for (int i = 0; i < SEED_LEN; i++)
|
for (int i = 0; i < SEED_LEN; i++)
|
||||||
if (++determseed[i])
|
if (++determseed[i])
|
||||||
break;
|
break;
|
||||||
memcpy(seed, determseed, SEED_LEN);
|
memcpy(seed, determseed, SEED_LEN);
|
||||||
pthread_mutex_unlock(&determseed_mutex);
|
pthread_mutex_unlock(&determseed_mutex);
|
||||||
ed25519_seckey_expand(sk,seed);
|
|
||||||
|
|
||||||
#ifdef STATISTICS
|
ed25519_seckey_expand(sk,seed);
|
||||||
++st->numrestart.v;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
ge_scalarmult_base(&ge_public,sk);
|
ge_scalarmult_base(&ge_public,sk);
|
||||||
ge_p3_tobytes(pk,&ge_public);
|
ge_p3_tobytes(pk,&ge_public);
|
||||||
|
|
Loading…
Add table
Reference in a new issue