diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-12-26 15:55:34 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-12-26 15:55:34 +0100 |
commit | 57c90547840ea2a073c950116303c54f9ef976f1 (patch) | |
tree | f53201d87e614325654e8935177275d2c4159eca /src/include | |
parent | 32da8154275a200144406d819d8abb77cab6fe30 (diff) |
implement #6161
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_exchangedb_plugin.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h index 8bf118a07..feca61fe3 100644 --- a/src/include/taler_exchangedb_plugin.h +++ b/src/include/taler_exchangedb_plugin.h @@ -3341,6 +3341,23 @@ struct TALER_EXCHANGEDB_Plugin /** + * Obtain information about a revoked online signing key. + * + * @param cls closure + * @param session a session (can be NULL) + * @param exchange_pub exchange online signing key that was revoked + * @param[out] master_sig signature affirming the revocation + * @return transaction status code + */ + enum GNUNET_DB_QueryStatus + (*lookup_signkey_revocation)( + void *cls, + struct TALER_EXCHANGEDB_Session *session, + const struct TALER_ExchangePublicKeyP *exchange_pub, + struct TALER_MasterSignatureP *master_sig); + + + /** * Lookup information about current denomination key. * * @param cls closure |