diff options
Diffstat (limited to 'tests/test-crypto-hash.c')
-rw-r--r-- | tests/test-crypto-hash.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test-crypto-hash.c b/tests/test-crypto-hash.c index 911437e60d..3ec31dde7b 100644 --- a/tests/test-crypto-hash.c +++ b/tests/test-crypto-hash.c @@ -163,6 +163,11 @@ static void test_hash_digest(void) for (i = 0; i < G_N_ELEMENTS(expected_outputs) ; i++) { int ret; char *digest; + size_t digestsize; + + digestsize = qcrypto_hash_digest_len(i); + + g_assert_cmpint(digestsize * 2, ==, strlen(expected_outputs[i])); ret = qcrypto_hash_digest(i, INPUT_TEXT, |