aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2017-04-30 11:54:13 +0200
committerDennis Brentjes <d.brentjes@gmail.com>2017-04-30 11:54:13 +0200
commitce2d83a434cea8a6317690aadbb478a58858ad5b (patch)
tree75bc1f0dd90a60b10f2bcbf647284761a42ee16d
parent4895eff27938fa72e5a638ff173920e823ebb115 (diff)
downloadcmix-ce2d83a434cea8a6317690aadbb478a58858ad5b.tar.gz
cmix-ce2d83a434cea8a6317690aadbb478a58858ad5b.tar.bz2
cmix-ce2d83a434cea8a6317690aadbb478a58858ad5b.zip
Upped the stride to the maximum possible value.
-rw-r--r--libcmix-crypto/ed25519/gcrypt/gcrypt_ed25519.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcmix-crypto/ed25519/gcrypt/gcrypt_ed25519.c b/libcmix-crypto/ed25519/gcrypt/gcrypt_ed25519.c
index 8807282..c8913cf 100644
--- a/libcmix-crypto/ed25519/gcrypt/gcrypt_ed25519.c
+++ b/libcmix-crypto/ed25519/gcrypt/gcrypt_ed25519.c
@@ -26,7 +26,7 @@ static gcry_mpi_t p;
static unsigned int nr_bits = 256;
static unsigned int nr_point_bits = 256 * 2;
static unsigned int nr_bytes = 256 / 8;
-static unsigned int stride = 16;
+static unsigned int stride = 32;
void check(gcry_error_t error) {
if (error) {