diff options
author | Gian Demarmels <gian@demarmels.org> | 2022-01-11 21:21:18 +0100 |
---|---|---|
committer | Gian Demarmels <gian@demarmels.org> | 2022-02-04 15:36:11 +0100 |
commit | 5b7e8f9ac55990823363edffa0e907256d15ce4f (patch) | |
tree | 7c0b265ea23c46a40e131ea3eea16090688b0a0c /src/util/taler-exchange-secmod-cs.h | |
parent | daa7fdcfb1053bdd943ad7cd1bd8eb623d1c9157 (diff) |
refactoring
Diffstat (limited to 'src/util/taler-exchange-secmod-cs.h')
-rw-r--r-- | src/util/taler-exchange-secmod-cs.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/util/taler-exchange-secmod-cs.h b/src/util/taler-exchange-secmod-cs.h index 121690e38..c5f1b7dec 100644 --- a/src/util/taler-exchange-secmod-cs.h +++ b/src/util/taler-exchange-secmod-cs.h @@ -52,14 +52,9 @@ struct TALER_CRYPTO_CsKeyAvailableNotification struct GNUNET_MessageHeader header; /** - * Number of bytes of the public key. - */ - uint16_t pub_size; - - /** * Number of bytes of the section name. */ - uint16_t section_name_len; + uint32_t section_name_len; /** * When does the key become available? @@ -82,7 +77,10 @@ struct TALER_CRYPTO_CsKeyAvailableNotification */ struct TALER_SecurityModuleSignatureP secm_sig; - /* followed by @e pub_size bytes of the CS public key */ + /** + * Denomination Public key + */ + struct GNUNET_CRYPTO_CsPublicKey denom_pub; /* followed by @e section_name bytes of the configuration section name of the denomination of this key */ |