X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/blobdiff_plain/581ac808d0e8ee74c2c97bd41721d572bca90ed6..1aaccf40b93719fd3df7cc89e023b9bb48b358b6:/pub/ed25519.c diff --git a/pub/ed25519.c b/pub/ed25519.c index 2dc11613..7fddf987 100644 --- a/pub/ed25519.c +++ b/pub/ed25519.c @@ -319,7 +319,7 @@ void ed25519ctx_sign(octet sig[ED25519_SIGSZ], const void *m, size_t msz) { sha512_ctx h; - scaf_piece a[NPIECE], r[NPIECE], t[NPIECE], scratch[3*NPIECE + 1]; + scaf_piece a[NPIECE], r[NPIECE], t[NPIECE], scratch[3*NPIECE]; scaf_dblpiece tt[2*NPIECE]; f25519 RX, RY, RZ; octet h1[32], pb[PREFIX_BUFSZ], rb[SHA512_HASHSZ]; @@ -388,7 +388,7 @@ int ed25519ctx_verify(const octet K[ED25519_PUBSZ], const octet sig[ED25519_SIGSZ]) { sha512_ctx h; - scaf_piece s[NPIECE], t[NPIECE], scratch[3*NPIECE + 1]; + scaf_piece s[NPIECE], t[NPIECE], scratch[3*NPIECE]; scaf_dblpiece tt[2*NPIECE]; f25519 AX, AY, AZ, RX, RY, RZ; octet b[PREFIX_BUFSZ]; @@ -441,6 +441,8 @@ int ed25519_verify(const octet K[ED25519_PUBSZ], #include #include +#include "ct.h" + static int vrf_pubkey(dstr dv[]) { dstr dpub = DSTR_INIT; @@ -448,8 +450,10 @@ static int vrf_pubkey(dstr dv[]) if (dv[1].len != ED25519_PUBSZ) die(1, "bad pub length"); + ct_poison(dv[0].buf, dv[0].len); dstr_ensure(&dpub, ED25519_PUBSZ); dpub.len = ED25519_PUBSZ; ed25519_pubkey((octet *)dpub.buf, dv[0].buf, dv[0].len); + ct_remedy(dpub.buf, dpub.len); if (memcmp(dpub.buf, dv[1].buf, ED25519_PUBSZ) != 0) { ok = 0; fprintf(stderr, "failed!"); @@ -473,6 +477,7 @@ static int vrf_sign(dstr *priv, int phflag, dstr *perso, if (want->len != ED25519_SIGSZ) die(1, "bad result length"); + ct_poison(priv->buf, priv->len); dstr_ensure(&dsig, ED25519_SIGSZ); dsig.len = ED25519_SIGSZ; if (phflag <= 0) m = msg; @@ -487,6 +492,7 @@ static int vrf_sign(dstr *priv, int phflag, dstr *perso, ed25519ctx_sign((octet *)dsig.buf, priv->buf, priv->len, K, phflag, perso ? perso->buf : 0, perso ? perso->len : 0, m->buf, m->len); + ct_remedy(dsig.buf, dsig.len); if (memcmp(dsig.buf, want->buf, ED25519_SIGSZ) != 0) { ok = 0; fprintf(stderr, "failed!");