summaryrefslogtreecommitdiffstats
path: root/commands/digest.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands/digest.c')
-rw-r--r--commands/digest.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/commands/digest.c b/commands/digest.c
index ef95e94816..b6bce88297 100644
--- a/commands/digest.c
+++ b/commands/digest.c
@@ -34,6 +34,9 @@ int __do_digest(struct digest *d, unsigned char *key, int keylen,
perror("set_key");
goto err;
}
+ } else if (digest_is_flags(d, DIGEST_ALGO_NEED_KEY)) {
+ eprintf("%s need a key to be used\n", digest_name(d));
+ goto err;
}
hash = calloc(digest_length(d), sizeof(unsigned char));