summaryrefslogtreecommitdiff
path: root/firmware/lib/cryptolib/rsa.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/lib/cryptolib/rsa.c')
-rw-r--r--firmware/lib/cryptolib/rsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/lib/cryptolib/rsa.c b/firmware/lib/cryptolib/rsa.c
index 6d61a216..db60d2d2 100644
--- a/firmware/lib/cryptolib/rsa.c
+++ b/firmware/lib/cryptolib/rsa.c
@@ -158,7 +158,7 @@ int RSAVerify(const RSAPublicKey *key,
buf = (uint8_t*) VbExMalloc(sig_len);
if (!buf)
return 0;
- Memcpy(buf, sig, sig_len);
+ memcpy(buf, sig, sig_len);
modpowF4(key, buf);