summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Kivilinna <jussi.kivilinna@iki.fi>2020-12-22 19:49:49 +0200
committerJussi Kivilinna <jussi.kivilinna@iki.fi>2020-12-22 19:51:20 +0200
commite47f04b4a28947c90db70ccaf93e149cfd5213c9 (patch)
treec968a9c96785e6847d015ff1d09b13177d618c83
parent2ab14b23afc092fd25395954c2a94db932ca4d95 (diff)
downloadlibgcrypt-e47f04b4a28947c90db70ccaf93e149cfd5213c9.tar.gz
Add missing prototype for _gcry_mac_selftest
* src/cipher-proto.h (_gcry_hmac_selftest): Rename to... (_gcry_mac_selftest): ... this. -- It appears that '_gcry_hmac_selftest' has been renamed to '_gcry_mac_selftest' but renaming prototype was missed. Signed-off-by: Jussi Kivilinna <jussi.kivilinna@iki.fi>
-rw-r--r--src/cipher-proto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cipher-proto.h b/src/cipher-proto.h
index d87559ed..ece5322d 100644
--- a/src/cipher-proto.h
+++ b/src/cipher-proto.h
@@ -267,8 +267,8 @@ gcry_error_t _gcry_md_selftest (int algo, int extended,
selftest_report_func_t report);
gcry_error_t _gcry_pk_selftest (int algo, int extended,
selftest_report_func_t report);
-gcry_error_t _gcry_hmac_selftest (int algo, int extended,
- selftest_report_func_t report);
+gcry_error_t _gcry_mac_selftest (int algo, int extended,
+ selftest_report_func_t report);
gcry_error_t _gcry_random_selftest (selftest_report_func_t report);