diff options
Diffstat (limited to 'include/crypto')
-rw-r--r-- | include/crypto/hash.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/crypto/hash.h b/include/crypto/hash.h index b5acbf638c..3d1812442f 100644 --- a/include/crypto/hash.h +++ b/include/crypto/hash.h @@ -44,6 +44,17 @@ typedef enum { */ gboolean qcrypto_hash_supports(QCryptoHashAlgorithm alg); + +/** + * qcrypto_hash_digest_len: + * @alg: the hash algorithm + * + * Determine the size of the hash digest in bytes + * + * Returns: the digest length in bytes + */ +size_t qcrypto_hash_digest_len(QCryptoHashAlgorithm alg); + /** * qcrypto_hash_bytesv: * @alg: the hash algorithm |