summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-02-09 10:11:40 +0100
committerChristian Grothoff <christian@grothoff.org>2022-02-09 10:11:40 +0100
commit77eaa685b9dbc5d643f2f01a483ef6c212592801 (patch)
tree15fc5d241334de68db11f2c391972c4f90cf9059 /src/util
parent88b84d01cbad3065465d9934ac2a80f8b3c2d764 (diff)
downloadexchange-77eaa685b9dbc5d643f2f01a483ef6c212592801.tar.gz
exchange-77eaa685b9dbc5d643f2f01a483ef6c212592801.tar.bz2
exchange-77eaa685b9dbc5d643f2f01a483ef6c212592801.zip
-indent
Diffstat (limited to 'src/util')
-rw-r--r--src/util/denom.c22
1 files changed, 10 insertions, 12 deletions
diff --git a/src/util/denom.c b/src/util/denom.c
index 0c1f99225..3e841ce38 100644
--- a/src/util/denom.c
+++ b/src/util/denom.c
@@ -198,8 +198,9 @@ TALER_denom_sig_unblind (
case TALER_DENOMINATION_CS:
{
struct GNUNET_CRYPTO_CsBlindingSecret bs[2];
- GNUNET_CRYPTO_cs_blinding_secrets_derive (&bks->nonce, bs);
+ GNUNET_CRYPTO_cs_blinding_secrets_derive (&bks->nonce,
+ bs);
GNUNET_CRYPTO_cs_unblind (&bdenom_sig->details.blinded_cs_answer.s_scalar,
&bs[bdenom_sig->details.blinded_cs_answer.b],
&denom_sig->details.cs_signature.s_scalar);
@@ -332,15 +333,13 @@ TALER_denom_blind (
{
case TALER_DENOMINATION_RSA:
blinded_planchet->cipher = dk->cipher;
-
if (GNUNET_YES !=
- GNUNET_CRYPTO_rsa_blind (&c_hash->hash,
- &coin_bks->rsa_bks,
- dk->details.rsa_public_key,
- &blinded_planchet->details.rsa_blinded_planchet
- .blinded_msg,
- &blinded_planchet->details.rsa_blinded_planchet
- .blinded_msg_size))
+ GNUNET_CRYPTO_rsa_blind (
+ &c_hash->hash,
+ &coin_bks->rsa_bks,
+ dk->details.rsa_public_key,
+ &blinded_planchet->details.rsa_blinded_planchet.blinded_msg,
+ &blinded_planchet->details.rsa_blinded_planchet.blinded_msg_size))
{
GNUNET_break (0);
return GNUNET_SYSERR;
@@ -348,10 +347,10 @@ TALER_denom_blind (
return GNUNET_OK;
case TALER_DENOMINATION_CS:
{
- blinded_planchet->cipher = dk->cipher;
struct TALER_DenominationCSPublicRPairP blinded_r_pub;
struct GNUNET_CRYPTO_CsBlindingSecret bs[2];
+ blinded_planchet->cipher = dk->cipher;
GNUNET_CRYPTO_cs_blinding_secrets_derive (&coin_bks->nonce,
bs);
GNUNET_CRYPTO_cs_calc_blinded_c (
@@ -360,8 +359,7 @@ TALER_denom_blind (
&dk->details.cs_public_key,
&c_hash->hash,
sizeof(struct GNUNET_HashCode),
- blinded_planchet->details.
- cs_blinded_planchet.c,
+ blinded_planchet->details.cs_blinded_planchet.c,
blinded_r_pub.r_pub);
return GNUNET_OK;
}