We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d0534a commit bf86557Copy full SHA for bf86557
src/crypto/refc/x25519.c
@@ -129,7 +129,7 @@ swapout(uint8_t *out, limb_t *x) {
129
memcpy(out,x,sizeof(fe));
130
}
131
132
-static void mul(fe out, const fe a, const fe b, unsigned nb) {
+static void mul(fe out, const fe a, const limb_t *b, unsigned nb) {
133
/* GCC at least produces pretty decent asm for this, so don't need to have dedicated asm. */
134
limb_t accum[2*NLIMBS] = {0};
135
unsigned i,j;
0 commit comments