summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNIIBE Yutaka <gniibe@fsij.org>2022-09-16 16:13:12 +0900
committerNIIBE Yutaka <gniibe@fsij.org>2022-09-16 16:13:12 +0900
commitf97b2f706dd0a8820828e9015340a895539ed216 (patch)
treee0f7127a9d771da1f17b399d1af7b9b61f0a4c4a /src
parent984d94fa9ffff69bd1bdb5d418889d2e6b2745e2 (diff)
downloadlibgcrypt-f97b2f706dd0a8820828e9015340a895539ed216.tar.gz
Move function prototype to cipher.h.
* cipher/kdf-internal.h: Move from here. * src/cipher.h (blake2b_vl_hash): To here. -- Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
Diffstat (limited to 'src')
-rw-r--r--src/cipher.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cipher.h b/src/cipher.h
index 87f8c4d0..9b890aeb 100644
--- a/src/cipher.h
+++ b/src/cipher.h
@@ -119,6 +119,8 @@ void _gcry_sha1_hash_buffer (void *outbuf,
const void *buffer, size_t length);
/*-- blake2.c --*/
+gcry_err_code_t blake2b_vl_hash (const void *in, size_t inlen,
+ size_t outputlen, void *output);
gcry_err_code_t _gcry_blake2_init_with_key(void *ctx, unsigned int flags,
const unsigned char *key,
size_t keylen, int algo);