aboutsummaryrefslogtreecommitdiff
path: root/crypto.h
diff options
context:
space:
mode:
authorMarkus Teich <markus.teich@stusta.mhn.de>2016-06-22 02:05:00 +0200
committerMarkus Teich <markus.teich@stusta.mhn.de>2016-06-22 02:05:00 +0200
commit965b4da7794b3fd0812907559c9434f98f4819fc (patch)
tree838c4ef500976af4ba636d04a246d4034a670819 /crypto.h
parent8d717c4b3d126104929aeb5e3a2176dd534e25ea (diff)
smc_zkp_dl: make v an output parameter
Diffstat (limited to 'crypto.h')
-rw-r--r--crypto.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto.h b/crypto.h
index a7b06d8..c6ddb36 100644
--- a/crypto.h
+++ b/crypto.h
@@ -84,9 +84,9 @@ struct proof_0og {
struct ec_mpi r2;
};
-void smc_zkp_dl (const gcry_mpi_point_t v,
- const gcry_mpi_t x,
- struct proof_dl *proof);
+void smc_zkp_dl (gcry_mpi_point_t v,
+ const gcry_mpi_t x,
+ struct proof_dl *proof);
int smc_zkp_dl_check (const gcry_mpi_point_t v,
const struct proof_dl *proof);