aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-02-09 10:37:11 +0100
committerChristian Grothoff <christian@grothoff.org>2022-02-09 10:37:11 +0100
commit0430ee5c6fd905ad356971768f3dcab067f44ecb (patch)
treea0784c2426ee2583062724aea508d94c7b98e5bd /src/util
parentddef3efd4cb73934fc90ccafe6f7ab98645d9848 (diff)
downloadgnunet-0430ee5c6fd905ad356971768f3dcab067f44ecb.tar.gz
gnunet-0430ee5c6fd905ad356971768f3dcab067f44ecb.zip
-indent
Diffstat (limited to 'src/util')
-rw-r--r--src/util/crypto_cs.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/util/crypto_cs.c b/src/util/crypto_cs.c
index c4bc3380a..9bd81efa5 100644
--- a/src/util/crypto_cs.c
+++ b/src/util/crypto_cs.c
@@ -409,7 +409,12 @@ GNUNET_CRYPTO_cs_verify (const struct GNUNET_CRYPTO_CsSignature *sig,
409{ 409{
410 // calculate c' = H(R, m) 410 // calculate c' = H(R, m)
411 struct GNUNET_CRYPTO_CsC c_dash; 411 struct GNUNET_CRYPTO_CsC c_dash;
412 cs_full_domain_hash (&sig->r_point, msg, msg_len, pub, &c_dash); 412
413 cs_full_domain_hash (&sig->r_point,
414 msg,
415 msg_len,
416 pub,
417 &c_dash);
413 418
414 // s'G ?= R' + c' pub 419 // s'G ?= R' + c' pub
415 struct GNUNET_CRYPTO_Cs25519Point sig_scal_mul_base; 420 struct GNUNET_CRYPTO_Cs25519Point sig_scal_mul_base;