diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/taler_crypto_lib.h | 20 | 
1 files changed, 20 insertions, 0 deletions
| diff --git a/src/include/taler_crypto_lib.h b/src/include/taler_crypto_lib.h index c6e2185f..870e2a99 100644 --- a/src/include/taler_crypto_lib.h +++ b/src/include/taler_crypto_lib.h @@ -44,6 +44,26 @@ struct TALER_SecurityModulePublicKeyP    struct GNUNET_CRYPTO_EddsaPublicKey eddsa_pub;  }; +/** + * @brief Set of the public keys of the security modules + */ +struct TALER_SecurityModulePublicKeySetP +{ +  /** +   * Public key of the RSA security module +   */ +  struct TALER_SecurityModulePublicKeyP rsa; + +  /** +   * Public key of the CS security module +   */ +  struct TALER_SecurityModulePublicKeyP cs; + +  /** +   * Public key of the eddsa security module +   */ +  struct TALER_SecurityModulePublicKeyP eddsa; +};  /**   * @brief Type of private keys for Taler security modules (software or hardware). | 
