diff options
| author | Dorjoy Chowdhury <dorjoychy111@gmail.com> | 2024-09-06 01:57:28 +0600 |
|---|---|---|
| committer | Daniel P. Berrangé <berrange@redhat.com> | 2024-09-09 15:13:38 +0100 |
| commit | 5d04de7de54e163b056980be10ee1c281a600276 (patch) | |
| tree | 3c97a40b879f478370b89388cc71ead7525841ec /include/crypto | |
| parent | 41162dd6ee5bc8bfd73f549d6bddd24e9b205c18 (diff) | |
| download | focaccia-qemu-5d04de7de54e163b056980be10ee1c281a600276.tar.gz focaccia-qemu-5d04de7de54e163b056980be10ee1c281a600276.zip | |
crypto: Define macros for hash algorithm digest lengths
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Dorjoy Chowdhury <dorjoychy111@gmail.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'include/crypto')
| -rw-r--r-- | include/crypto/hash.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/crypto/hash.h b/include/crypto/hash.h index 54d87aa2a1..a113cc3b04 100644 --- a/include/crypto/hash.h +++ b/include/crypto/hash.h @@ -23,6 +23,14 @@ #include "qapi/qapi-types-crypto.h" +#define QCRYPTO_HASH_DIGEST_LEN_MD5 16 +#define QCRYPTO_HASH_DIGEST_LEN_SHA1 20 +#define QCRYPTO_HASH_DIGEST_LEN_SHA224 28 +#define QCRYPTO_HASH_DIGEST_LEN_SHA256 32 +#define QCRYPTO_HASH_DIGEST_LEN_SHA384 48 +#define QCRYPTO_HASH_DIGEST_LEN_SHA512 64 +#define QCRYPTO_HASH_DIGEST_LEN_RIPEMD160 20 + /* See also "QCryptoHashAlgorithm" defined in qapi/crypto.json */ /** |