diff options
| author | Christian Grothoff <christian@grothoff.org> | 2021-11-01 23:49:13 +0100 | 
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2021-11-01 23:49:13 +0100 | 
| commit | 1408e1587b57903d817e93cdafc2de3156af9e43 (patch) | |
| tree | cc5b64a89e5dff9a64d8641733c9c4874fd5b5e4 /src/include | |
| parent | 9358b886f1249333a5049dab2b4e17fadc0213e0 (diff) | |
introduce invalid key type
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/taler_crypto_lib.h | 9 | 
1 files changed, 7 insertions, 2 deletions
diff --git a/src/include/taler_crypto_lib.h b/src/include/taler_crypto_lib.h index f63b7dca..8871369e 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  };  | 
