forked from pool/openssl-1_1
16 lines
653 B
Diff
16 lines
653 B
Diff
|
Index: openssl-1.1.0e/apps/dgst.c
|
||
|
===================================================================
|
||
|
--- openssl-1.1.0e.orig/apps/dgst.c 2017-04-20 12:31:52.471544178 +0200
|
||
|
+++ openssl-1.1.0e/apps/dgst.c 2017-04-20 12:38:46.669771843 +0200
|
||
|
@@ -94,6 +94,10 @@ int dgst_main(int argc, char **argv)
|
||
|
prog = opt_progname(argv[0]);
|
||
|
buf = app_malloc(BUFSIZE, "I/O buffer");
|
||
|
md = EVP_get_digestbyname(prog);
|
||
|
+ if (md == NULL && strcmp(prog, "dgst") != 0) {
|
||
|
+ BIO_printf(bio_err, "%s is not a known digest\n", prog);
|
||
|
+ goto end;
|
||
|
+ }
|
||
|
|
||
|
prog = opt_init(argc, argv, dgst_options);
|
||
|
while ((o = opt_next()) != OPT_EOF) {
|