summaryrefslogtreecommitdiff
path: root/src/include/taler_crypto_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-11-01 23:49:13 +0100
committerChristian Grothoff <christian@grothoff.org>2021-11-01 23:49:13 +0100
commit1408e1587b57903d817e93cdafc2de3156af9e43 (patch)
treecc5b64a89e5dff9a64d8641733c9c4874fd5b5e4 /src/include/taler_crypto_lib.h
parent9358b886f1249333a5049dab2b4e17fadc0213e0 (diff)
downloadexchange-1408e1587b57903d817e93cdafc2de3156af9e43.tar.gz
exchange-1408e1587b57903d817e93cdafc2de3156af9e43.tar.bz2
exchange-1408e1587b57903d817e93cdafc2de3156af9e43.zip
introduce invalid key type
Diffstat (limited to 'src/include/taler_crypto_lib.h')
-rw-r--r--src/include/taler_crypto_lib.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/include/taler_crypto_lib.h b/src/include/taler_crypto_lib.h
index f63b7dcae..8871369e2 100644
--- a/src/include/taler_crypto_lib.h
+++ b/src/include/taler_crypto_lib.h
@@ -485,14 +485,19 @@ enum TALER_DenominationCipher
{
/**
+ * Invalid type of signature.
+ */
+ TALER_DENOMINATION_INVALID = 0,
+
+ /**
* RSA blind signature.
*/
- TALER_DENOMINATION_RSA = 0,
+ TALER_DENOMINATION_RSA = 1,
/**
* Clause-Schnorr blind signature.
*/
- // TALER_DENOMINATION_CS = 1
+ // TALER_DENOMINATION_CS = 2
};