summaryrefslogtreecommitdiff
path: root/xed25519.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-12-13 04:21:38 -0500
committerJeffrey Walton <noloader@gmail.com>2018-12-13 04:21:38 -0500
commit20f4d22055ef99c440b62963991359bc3ff6ef27 (patch)
tree8e5d2e4f9388da53958244ba57f24fdd0ce9b379 /xed25519.cpp
parent0bdacf1496d51e6e99a98e7cd900443c6e8680c6 (diff)
downloadcryptopp-git-20f4d22055ef99c440b62963991359bc3ff6ef27.tar.gz
Fix compile on 32-bit MIPS (GH #761)
Testing on a ci20 dev-board with Debian 5 and GCC 4
Diffstat (limited to 'xed25519.cpp')
-rw-r--r--xed25519.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xed25519.cpp b/xed25519.cpp
index 997202f1..95b8bc83 100644
--- a/xed25519.cpp
+++ b/xed25519.cpp
@@ -133,7 +133,7 @@ x25519::x25519(BufferedTransformation &params)
read = sk.Get(unused); // unused bits
CRYPTOPP_ASSERT(read == 1 && unused == 0);
-
+
read = sk.Get(m_sk, 32);
sk.MessageEnd();