diff options
author | W. Kosior <koszko@koszko.org> | 2025-01-24 22:04:48 +0100 |
---|---|---|
committer | W. Kosior <koszko@koszko.org> | 2025-01-25 19:13:14 +0100 |
commit | de168834ec90ecf77d0f66c6d22cf2cff05cda8e (patch) | |
tree | c0e65a4f676c27603215330ab65e59deb26e6c07 | |
parent | e1800ee73754c82f9adbe85637afb5fa95f17ff9 (diff) | |
download | pq-blind-sigs-impl-de168834ec90ecf77d0f66c6d22cf2cff05cda8e.tar.gz pq-blind-sigs-impl-de168834ec90ecf77d0f66c6d22cf2cff05cda8e.zip |
Use blind_sig_ctx_t in arguments list inside samp-le program.
-rw-r--r-- | pqcrypto_blind_sig_example.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pqcrypto_blind_sig_example.c b/pqcrypto_blind_sig_example.c index 666dc95..be3bb33 100644 --- a/pqcrypto_blind_sig_example.c +++ b/pqcrypto_blind_sig_example.c @@ -13,7 +13,7 @@ static const char test_message[] = "This is a message to blind-sign."; #define RETRIES_MAX 1000U -static void perform_signing(struct blind_sig_ctx * const ctx) { +static void perform_signing(blind_sig_ctx_t const ctx) { unsigned long retries_left = RETRIES_MAX; blind_sig_priv_key_t priv_key; |