d0_bignum_t *schnorr_s;
// public data (player ID public key, this is what the server gets to know)
- d0_bignum_t *schnorr_4_to_s;
- d0_bignum_t *schnorr_H_4_to_s_signature; // 0 when signature is invalid
+ d0_bignum_t *schnorr_g_to_s;
+ d0_bignum_t *schnorr_H_g_to_s_signature; // 0 when signature is invalid
// as hash function H, we get the SHA1 and reinterpret as bignum - yes, it always is < 160 bits
// temp data
d0_bignum_t *r; // random number for schnorr ID
d0_bignum_t *t; // for DH key exchange
- d0_bignum_t *other_4_to_t; // for DH key exchange
+ d0_bignum_t *g_to_t; // for DH key exchange
+ d0_bignum_t *other_g_to_t; // for DH key exchange
d0_bignum_t *challenge; // challenge
char msghash[SCHNORR_HASHSIZE]; // init hash
if(ctx->rsa_d) d0_bignum_free(ctx->rsa_d);
if(ctx->schnorr_G) d0_bignum_free(ctx->schnorr_G);
if(ctx->schnorr_s) d0_bignum_free(ctx->schnorr_s);
- if(ctx->schnorr_4_to_s) d0_bignum_free(ctx->schnorr_4_to_s);
- if(ctx->schnorr_H_4_to_s_signature) d0_bignum_free(ctx->schnorr_H_4_to_s_signature);
+ if(ctx->schnorr_g_to_s) d0_bignum_free(ctx->schnorr_g_to_s);
+ if(ctx->schnorr_H_g_to_s_signature) d0_bignum_free(ctx->schnorr_H_g_to_s_signature);
if(ctx->rsa_blind_signature_camouflage) d0_bignum_free(ctx->rsa_blind_signature_camouflage);
if(ctx->r) d0_bignum_free(ctx->r);
if(ctx->challenge) d0_bignum_free(ctx->challenge);
if(ctx->t) d0_bignum_free(ctx->t);
- if(ctx->other_4_to_t) d0_bignum_free(ctx->other_4_to_t);
+ if(ctx->g_to_t) d0_bignum_free(ctx->g_to_t);
+ if(ctx->other_g_to_t) d0_bignum_free(ctx->other_g_to_t);
memset(ctx, 0, sizeof(*ctx));
}
if(src->rsa_d) CHECK_ASSIGN(ctx->rsa_d, d0_bignum_mov(NULL, src->rsa_d));
if(src->schnorr_G) CHECK_ASSIGN(ctx->schnorr_G, d0_bignum_mov(NULL, src->schnorr_G));
if(src->schnorr_s) CHECK_ASSIGN(ctx->schnorr_s, d0_bignum_mov(NULL, src->schnorr_s));
- if(src->schnorr_4_to_s) CHECK_ASSIGN(ctx->schnorr_4_to_s, d0_bignum_mov(NULL, src->schnorr_4_to_s));
- if(src->schnorr_H_4_to_s_signature) CHECK_ASSIGN(ctx->schnorr_H_4_to_s_signature, d0_bignum_mov(NULL, src->schnorr_H_4_to_s_signature));
+ if(src->schnorr_g_to_s) CHECK_ASSIGN(ctx->schnorr_g_to_s, d0_bignum_mov(NULL, src->schnorr_g_to_s));
+ if(src->schnorr_H_g_to_s_signature) CHECK_ASSIGN(ctx->schnorr_H_g_to_s_signature, d0_bignum_mov(NULL, src->schnorr_H_g_to_s_signature));
if(src->rsa_blind_signature_camouflage) CHECK_ASSIGN(ctx->rsa_blind_signature_camouflage, d0_bignum_mov(NULL, src->rsa_blind_signature_camouflage));
if(src->r) CHECK_ASSIGN(ctx->r, d0_bignum_mov(NULL, src->r));
if(src->challenge) CHECK_ASSIGN(ctx->challenge, d0_bignum_mov(NULL, src->challenge));
if(src->t) CHECK_ASSIGN(ctx->t, d0_bignum_mov(NULL, src->t));
- if(src->other_4_to_t) CHECK_ASSIGN(ctx->other_4_to_t, d0_bignum_mov(NULL, src->other_4_to_t));
+ if(src->g_to_t) CHECK_ASSIGN(ctx->g_to_t, d0_bignum_mov(NULL, src->g_to_t));
+ if(src->other_g_to_t) CHECK_ASSIGN(ctx->other_g_to_t, d0_bignum_mov(NULL, src->other_g_to_t));
memcpy(ctx->msg, src->msg, sizeof(ctx->msg));
ctx->msglen = src->msglen;
memcpy(ctx->msghash, src->msghash, sizeof(ctx->msghash));
{
// temps: temp0 = order
USING(schnorr_G);
- REPLACING(schnorr_s); REPLACING(schnorr_4_to_s);
+ REPLACING(schnorr_s); REPLACING(schnorr_g_to_s);
CHECK(d0_dl_get_order(temp0, ctx->schnorr_G));
CHECK_ASSIGN(ctx->schnorr_s, d0_bignum_rand_range(ctx->schnorr_s, zero, temp0));
- CHECK_ASSIGN(ctx->schnorr_4_to_s, d0_bignum_mod_pow(ctx->schnorr_4_to_s, four, ctx->schnorr_s, ctx->schnorr_G));
- CHECK_ASSIGN(ctx->schnorr_H_4_to_s_signature, d0_bignum_zero(ctx->schnorr_H_4_to_s_signature));
+ CHECK_ASSIGN(ctx->schnorr_g_to_s, d0_bignum_mod_pow(ctx->schnorr_g_to_s, four, ctx->schnorr_s, ctx->schnorr_G));
+ CHECK_ASSIGN(ctx->schnorr_H_g_to_s_signature, d0_bignum_zero(ctx->schnorr_H_g_to_s_signature));
return 1;
fail:
size_t sz;
// temps: temp0 rsa_blind_signature_camouflage^challenge, temp1 (4^s)*rsa_blind_signature_camouflage^challenge
- USING(rsa_n); USING(rsa_e); USING(schnorr_4_to_s);
+ USING(rsa_n); USING(rsa_e); USING(schnorr_g_to_s);
REPLACING(rsa_blind_signature_camouflage);
out = d0_iobuf_open_write(outbuf, *outbuflen);
CHECK(d0_bignum_mod_pow(temp0, ctx->rsa_blind_signature_camouflage, ctx->rsa_e, ctx->rsa_n));
// we will actually sign HA(4^s) to prevent a malleability attack!
- CHECK(d0_bignum_mov(temp2, ctx->schnorr_4_to_s));
+ CHECK(d0_bignum_mov(temp2, ctx->schnorr_g_to_s));
sz = (d0_bignum_size(ctx->rsa_n) + 7) / 8; // this is too long, so we have to take the value % rsa_n when "decrypting"
if(sz > sizeof(shabuf))
sz = sizeof(shabuf);
// temps: temp0 input, temp1 rsa_blind_signature_camouflage^-1
USING(rsa_blind_signature_camouflage); USING(rsa_n);
- REPLACING(schnorr_H_4_to_s_signature);
+ REPLACING(schnorr_H_g_to_s_signature);
in = d0_iobuf_open_read(inbuf, inbuflen);
CHECK(d0_iobuf_read_bignum(in, temp0));
CHECK(d0_bignum_mod_inv(temp1, ctx->rsa_blind_signature_camouflage, ctx->rsa_n));
- CHECK_ASSIGN(ctx->schnorr_H_4_to_s_signature, d0_bignum_mod_mul(ctx->schnorr_H_4_to_s_signature, temp0, temp1, ctx->rsa_n));
+ CHECK_ASSIGN(ctx->schnorr_H_g_to_s_signature, d0_bignum_mod_mul(ctx->schnorr_H_g_to_s_signature, temp0, temp1, ctx->rsa_n));
return d0_iobuf_close(in, NULL);
{
d0_iobuf_t *in = NULL;
- REPLACING(schnorr_s); REPLACING(schnorr_4_to_s); REPLACING(schnorr_H_4_to_s_signature);
+ REPLACING(schnorr_s); REPLACING(schnorr_g_to_s); REPLACING(schnorr_H_g_to_s_signature);
in = d0_iobuf_open_read(inbuf, inbuflen);
CHECK_ASSIGN(ctx->schnorr_s, d0_iobuf_read_bignum(in, ctx->schnorr_s));
- CHECK_ASSIGN(ctx->schnorr_4_to_s, d0_iobuf_read_bignum(in, ctx->schnorr_4_to_s));
- CHECK_ASSIGN(ctx->schnorr_H_4_to_s_signature, d0_iobuf_read_bignum(in, ctx->schnorr_H_4_to_s_signature));
+ CHECK_ASSIGN(ctx->schnorr_g_to_s, d0_iobuf_read_bignum(in, ctx->schnorr_g_to_s));
+ CHECK_ASSIGN(ctx->schnorr_H_g_to_s_signature, d0_iobuf_read_bignum(in, ctx->schnorr_H_g_to_s_signature));
return d0_iobuf_close(in, NULL);
{
d0_iobuf_t *in = NULL;
- REPLACING(schnorr_4_to_s); REPLACING(schnorr_H_4_to_s_signature);
+ REPLACING(schnorr_g_to_s); REPLACING(schnorr_H_g_to_s_signature);
in = d0_iobuf_open_read(inbuf, inbuflen);
- CHECK_ASSIGN(ctx->schnorr_4_to_s, d0_iobuf_read_bignum(in, ctx->schnorr_4_to_s));
- CHECK_ASSIGN(ctx->schnorr_H_4_to_s_signature, d0_iobuf_read_bignum(in, ctx->schnorr_H_4_to_s_signature));
+ CHECK_ASSIGN(ctx->schnorr_g_to_s, d0_iobuf_read_bignum(in, ctx->schnorr_g_to_s));
+ CHECK_ASSIGN(ctx->schnorr_H_g_to_s_signature, d0_iobuf_read_bignum(in, ctx->schnorr_H_g_to_s_signature));
return d0_iobuf_close(in, NULL);
{
d0_iobuf_t *out = NULL;
- USING(schnorr_s); USING(schnorr_4_to_s); USING(schnorr_H_4_to_s_signature);
+ USING(schnorr_s); USING(schnorr_g_to_s); USING(schnorr_H_g_to_s_signature);
out = d0_iobuf_open_write(outbuf, *outbuflen);
CHECK(d0_iobuf_write_bignum(out, ctx->schnorr_s));
- CHECK(d0_iobuf_write_bignum(out, ctx->schnorr_4_to_s));
- CHECK(d0_iobuf_write_bignum(out, ctx->schnorr_H_4_to_s_signature));
+ CHECK(d0_iobuf_write_bignum(out, ctx->schnorr_g_to_s));
+ CHECK(d0_iobuf_write_bignum(out, ctx->schnorr_H_g_to_s_signature));
return d0_iobuf_close(out, outbuflen);
{
d0_iobuf_t *out = NULL;
- USING(schnorr_4_to_s); USING(schnorr_H_4_to_s_signature);
+ USING(schnorr_g_to_s); USING(schnorr_H_g_to_s_signature);
out = d0_iobuf_open_write(outbuf, *outbuflen);
- CHECK(d0_iobuf_write_bignum(out, ctx->schnorr_4_to_s));
- CHECK(d0_iobuf_write_bignum(out, ctx->schnorr_H_4_to_s_signature));
+ CHECK(d0_iobuf_write_bignum(out, ctx->schnorr_g_to_s));
+ CHECK(d0_iobuf_write_bignum(out, ctx->schnorr_H_g_to_s_signature));
return d0_iobuf_close(out, outbuflen);
// temps: temp0 order, temp0 4^r
if(is_first)
{
- USING(schnorr_4_to_s); USING(schnorr_H_4_to_s_signature);
+ USING(schnorr_g_to_s); USING(schnorr_H_g_to_s_signature);
}
USING(schnorr_G);
- REPLACING(r);
+ REPLACING(r); REPLACING(t); REPLACING(g_to_t);
out = d0_iobuf_open_write(outbuf, *outbuflen);
// send ID
if(send_modulus)
CHECK(d0_iobuf_write_bignum(out, ctx->schnorr_G));
- CHECK(d0_iobuf_write_bignum(out, ctx->schnorr_4_to_s));
- CHECK(d0_iobuf_write_bignum(out, ctx->schnorr_H_4_to_s_signature));
+ CHECK(d0_iobuf_write_bignum(out, ctx->schnorr_g_to_s));
+ CHECK(d0_iobuf_write_bignum(out, ctx->schnorr_H_g_to_s_signature));
}
// start schnorr ID scheme
CHECK_ASSIGN(ctx->r, d0_bignum_rand_range(ctx->r, zero, temp0));
CHECK(d0_bignum_mod_pow(temp0, four, ctx->r, ctx->schnorr_G));
+ // initialize Signed Diffie Hellmann
+ CHECK(d0_dl_get_order(temp1, ctx->schnorr_G));
+ CHECK_ASSIGN(ctx->t, d0_bignum_rand_range(ctx->t, zero, temp1));
+ CHECK_ASSIGN(ctx->g_to_t, d0_bignum_mod_pow(ctx->g_to_t, four, ctx->t, ctx->schnorr_G));
+ // can we SOMEHOW do this with just one mod_pow?
+
// hash it, hash it, everybody hash it
conv = d0_iobuf_open_write(convbuf, sizeof(convbuf));
CHECK(d0_iobuf_write_bignum(conv, temp0));
+ CHECK(d0_iobuf_write_bignum(conv, ctx->g_to_t));
CHECK(d0_iobuf_write_packet(conv, msg, msglen));
CHECK(d0_iobuf_write_bignum(conv, temp0));
+ CHECK(d0_iobuf_write_bignum(conv, ctx->g_to_t));
d0_iobuf_close(conv, &sz);
conv = NULL;
CHECK(d0_iobuf_write_raw(out, sha(convbuf, sz), SCHNORR_HASHSIZE) == SCHNORR_HASHSIZE);
// temps: temp0 order, temp0 signature check
if(is_first)
{
- REPLACING(schnorr_4_to_s); REPLACING(schnorr_H_4_to_s_signature);
+ REPLACING(schnorr_g_to_s); REPLACING(schnorr_H_g_to_s_signature);
if(recv_modulus)
REPLACING(schnorr_G);
else
}
else
{
- USING(schnorr_4_to_s); USING(schnorr_H_4_to_s_signature);
+ USING(schnorr_g_to_s); USING(schnorr_H_g_to_s_signature);
USING(schnorr_G);
}
USING(rsa_e); USING(rsa_n);
CHECK(d0_bignum_cmp(ctx->schnorr_G, zero) > 0);
CHECK(d0_bignum_cmp(ctx->schnorr_G, ctx->rsa_n) < 0);
}
- CHECK_ASSIGN(ctx->schnorr_4_to_s, d0_iobuf_read_bignum(in, ctx->schnorr_4_to_s));
- CHECK(d0_bignum_cmp(ctx->schnorr_4_to_s, zero) >= 0);
- CHECK(d0_bignum_cmp(ctx->schnorr_4_to_s, ctx->schnorr_G) < 0);
- CHECK_ASSIGN(ctx->schnorr_H_4_to_s_signature, d0_iobuf_read_bignum(in, ctx->schnorr_H_4_to_s_signature));
- CHECK(d0_bignum_cmp(ctx->schnorr_H_4_to_s_signature, zero) >= 0);
- CHECK(d0_bignum_cmp(ctx->schnorr_H_4_to_s_signature, ctx->rsa_n) < 0);
+ CHECK_ASSIGN(ctx->schnorr_g_to_s, d0_iobuf_read_bignum(in, ctx->schnorr_g_to_s));
+ CHECK(d0_bignum_cmp(ctx->schnorr_g_to_s, zero) >= 0);
+ CHECK(d0_bignum_cmp(ctx->schnorr_g_to_s, ctx->schnorr_G) < 0);
+ CHECK_ASSIGN(ctx->schnorr_H_g_to_s_signature, d0_iobuf_read_bignum(in, ctx->schnorr_H_g_to_s_signature));
+ CHECK(d0_bignum_cmp(ctx->schnorr_H_g_to_s_signature, zero) >= 0);
+ CHECK(d0_bignum_cmp(ctx->schnorr_H_g_to_s_signature, ctx->rsa_n) < 0);
// check signature of key (t = k^d, so, t^challenge = k)
- CHECK(d0_bignum_mod_pow(temp0, ctx->schnorr_H_4_to_s_signature, ctx->rsa_e, ctx->rsa_n));
+ CHECK(d0_bignum_mod_pow(temp0, ctx->schnorr_H_g_to_s_signature, ctx->rsa_e, ctx->rsa_n));
// we will actually sign SHA(4^s) to prevent a malleability attack!
- CHECK(d0_bignum_mov(temp2, ctx->schnorr_4_to_s));
+ CHECK(d0_bignum_mov(temp2, ctx->schnorr_g_to_s));
sz = (d0_bignum_size(ctx->rsa_n) + 7) / 8; // this is too long, so we have to take the value % rsa_n when "decrypting"
if(sz > sizeof(shabuf))
sz = sizeof(shabuf);
if(d0_bignum_cmp(temp0, temp1))
{
// accept the key anyway, but mark as failed signature! will later return 0 in status
- CHECK(d0_bignum_zero(ctx->schnorr_H_4_to_s_signature));
+ CHECK(d0_bignum_zero(ctx->schnorr_H_g_to_s_signature));
}
}
CHECK(d0_iobuf_write_bignum(out, temp0));
if(status)
- *status = !!d0_bignum_cmp(ctx->schnorr_H_4_to_s_signature, zero);
+ *status = !!d0_bignum_cmp(ctx->schnorr_H_g_to_s_signature, zero);
d0_iobuf_close(in, NULL);
return d0_iobuf_close(out, outbuflen);
d0_iobuf_t *out = NULL;
// temps: 0 order, 1 prod, 2 y, 3 challenge
- REPLACING(other_4_to_t); REPLACING(t);
- USING(schnorr_G); USING(schnorr_s); USING(r);
+ REPLACING(other_g_to_t); REPLACING(t);
+ USING(schnorr_G); USING(schnorr_s); USING(r); USING(g_to_t);
in = d0_iobuf_open_read(inbuf, inbuflen);
out = d0_iobuf_open_write(outbuf, *outbuflen);
CHECK(d0_iobuf_write_bignum(out, temp2));
// Diffie Hellmann recv
- CHECK_ASSIGN(ctx->other_4_to_t, d0_iobuf_read_bignum(in, ctx->other_4_to_t));
- CHECK(d0_bignum_cmp(ctx->other_4_to_t, zero) > 0);
- CHECK(d0_bignum_cmp(ctx->other_4_to_t, ctx->schnorr_G) < 0);
+ CHECK_ASSIGN(ctx->other_g_to_t, d0_iobuf_read_bignum(in, ctx->other_g_to_t));
+ CHECK(d0_bignum_cmp(ctx->other_g_to_t, zero) > 0);
+ CHECK(d0_bignum_cmp(ctx->other_g_to_t, ctx->schnorr_G) < 0);
// Diffie Hellmann send
- CHECK(d0_dl_get_order(temp0, ctx->schnorr_G));
- CHECK_ASSIGN(ctx->t, d0_bignum_rand_range(ctx->t, zero, temp0));
- // modify DH key value! (add |G|-r)
- CHECK(d0_bignum_add(temp1, ctx->t, temp0));
- CHECK(d0_bignum_sub(temp2, temp1, ctx->r));
- // can be undone by multiplying with 4^r in the end
- // ensures the party of the DH key exchange is the same party as the one of
- // the auth protocol (MITM who changes DH key exchange must break auth protocol)
- // trick is that MITM has no knowledge about g^r at this point, as he only
- // knows it in hashed form
- CHECK(d0_bignum_mod_pow(temp0, four, temp2, ctx->schnorr_G));
- CHECK(d0_iobuf_write_bignum(out, temp0));
+ CHECK(d0_iobuf_write_bignum(out, ctx->g_to_t));
d0_iobuf_close(in, NULL);
return d0_iobuf_close(out, outbuflen);
// temps: 0 y 1 order
USING(challenge); USING(schnorr_G);
- REPLACING(other_4_to_t);
+ REPLACING(other_g_to_t);
in = d0_iobuf_open_read(inbuf, inbuflen);
// verify schnorr ID scheme
// we need 4^r = 4^temp0 (g^s)^-challenge
CHECK(d0_bignum_neg(temp1, ctx->challenge));
- CHECK(d0_bignum_mod_pow(temp2, ctx->schnorr_4_to_s, temp1, ctx->schnorr_G));
+ CHECK(d0_bignum_mod_pow(temp2, ctx->schnorr_g_to_s, temp1, ctx->schnorr_G));
CHECK(d0_bignum_mod_pow(temp1, four, temp0, ctx->schnorr_G));
CHECK_ASSIGN(temp3, d0_bignum_mod_mul(temp3, temp1, temp2, ctx->schnorr_G));
// Diffie Hellmann recv
- CHECK_ASSIGN(ctx->other_4_to_t, d0_iobuf_read_bignum(in, ctx->other_4_to_t));
- CHECK(d0_bignum_cmp(ctx->other_4_to_t, zero) > 0);
- CHECK(d0_bignum_cmp(ctx->other_4_to_t, ctx->schnorr_G) < 0);
- // recover DH key value!
- CHECK(d0_bignum_mod_mul(ctx->other_4_to_t, ctx->other_4_to_t, temp3, ctx->schnorr_G));
+ CHECK_ASSIGN(ctx->other_g_to_t, d0_iobuf_read_bignum(in, ctx->other_g_to_t));
+ CHECK(d0_bignum_cmp(ctx->other_g_to_t, zero) > 0);
+ CHECK(d0_bignum_cmp(ctx->other_g_to_t, ctx->schnorr_G) < 0);
// hash it, hash it, everybody hash it
conv = d0_iobuf_open_write(convbuf, sizeof(convbuf));
CHECK(d0_iobuf_write_bignum(conv, temp3));
+ CHECK(d0_iobuf_write_bignum(conv, ctx->other_g_to_t));
CHECK(d0_iobuf_write_packet(conv, ctx->msg, ctx->msglen));
CHECK(d0_iobuf_write_bignum(conv, temp3));
+ CHECK(d0_iobuf_write_bignum(conv, ctx->other_g_to_t));
d0_iobuf_close(conv, &sz);
conv = NULL;
if(memcmp(sha(convbuf, sz), ctx->msghash, SCHNORR_HASHSIZE))
}
if(status)
- *status = !!d0_bignum_cmp(ctx->schnorr_H_4_to_s_signature, zero);
+ *status = !!d0_bignum_cmp(ctx->schnorr_H_g_to_s_signature, zero);
if(ctx->msglen <= *msglen)
memcpy(msg, ctx->msg, ctx->msglen);
d0_iobuf_t *conv = NULL;
size_t sz, n;
- USING(schnorr_4_to_s);
+ USING(schnorr_g_to_s);
out = d0_iobuf_open_write(outbuf, *outbuflen);
conv = d0_iobuf_open_write(convbuf, sizeof(convbuf));
- CHECK(d0_iobuf_write_bignum(conv, ctx->schnorr_4_to_s));
+ CHECK(d0_iobuf_write_bignum(conv, ctx->schnorr_g_to_s));
CHECK(d0_iobuf_close(conv, &sz));
conv = NULL;
BOOL d0_blind_id_sessionkey_public_id(const d0_blind_id_t *ctx, char *outbuf, size_t *outbuflen)
{
- USING(t); USING(other_4_to_t); USING(schnorr_G);
+ USING(t); USING(other_g_to_t); USING(schnorr_G);
// temps: temp0 result
- CHECK(d0_bignum_mod_pow(temp0, ctx->other_4_to_t, ctx->t, ctx->schnorr_G));
+ CHECK(d0_bignum_mod_pow(temp0, ctx->other_g_to_t, ctx->t, ctx->schnorr_G));
return d0_longhash_destructive(temp0, outbuf, *outbuflen);
fail: