Small typo fixes (harmless).
authorThomas Pornin <pornin@bolet.org>
Thu, 24 May 2018 13:26:43 +0000 (15:26 +0200)
committerThomas Pornin <pornin@bolet.org>
Thu, 24 May 2018 13:26:43 +0000 (15:26 +0200)
src/int/i31_montmul.c
src/rsa/rsa_oaep_unpad.c

index b953aa3..8066808 100644 (file)
@@ -34,7 +34,7 @@ br_i31_montymul(uint32_t *d, const uint32_t *x, const uint32_t *y,
 
        len = (m[0] + 31) >> 5;
        len4 = len & ~(size_t)3;
-       br_i32_zero(d, m[0]);
+       br_i31_zero(d, m[0]);
        dh = 0;
        for (u = 0; u < len; u ++) {
                uint32_t f, xu;
index e172a35..7c4be6a 100644 (file)
@@ -138,7 +138,7 @@ br_rsa_oaep_unpad(const br_hash_class *dig,
 
                plen = 2 + hlen + zlen;
                k -= plen;
-               memmove(data, data + plen, k);
+               memmove(buf, buf + plen, k);
                *len = k;
        }
        return s;