diff options
Diffstat (limited to 'src/include/common/cryptohash.h')
-rw-r--r-- | src/include/common/cryptohash.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/common/cryptohash.h b/src/include/common/cryptohash.h index ea1300d5d4b..8e339c83ad1 100644 --- a/src/include/common/cryptohash.h +++ b/src/include/common/cryptohash.h @@ -34,5 +34,6 @@ extern int pg_cryptohash_init(pg_cryptohash_ctx *ctx); extern int pg_cryptohash_update(pg_cryptohash_ctx *ctx, const uint8 *data, size_t len); extern int pg_cryptohash_final(pg_cryptohash_ctx *ctx, uint8 *dest, size_t len); extern void pg_cryptohash_free(pg_cryptohash_ctx *ctx); +extern const char *pg_cryptohash_error(pg_cryptohash_ctx *ctx); #endif /* PG_CRYPTOHASH_H */ |