diff options
Diffstat (limited to '')
-rw-r--r-- | src/regress/lib/libcrypto/evp/evptest.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/regress/lib/libcrypto/evp/evptest.c b/src/regress/lib/libcrypto/evp/evptest.c index f107ad5fb4..a71c1fb55a 100644 --- a/src/regress/lib/libcrypto/evp/evptest.c +++ b/src/regress/lib/libcrypto/evp/evptest.c | |||
@@ -405,6 +405,13 @@ main(int argc, char **argv) | |||
405 | continue; | 405 | continue; |
406 | } | 406 | } |
407 | #endif | 407 | #endif |
408 | #ifdef OPENSSL_NO_GOST | ||
409 | if (strstr(cipher, "md_gost") == cipher || | ||
410 | strstr(cipher, "streebog") == cipher) { | ||
411 | fprintf(stdout, "Cipher disabled, skipping %s\n", cipher); | ||
412 | continue; | ||
413 | } | ||
414 | #endif | ||
408 | fprintf(stderr, "Can't find %s\n",cipher); | 415 | fprintf(stderr, "Can't find %s\n",cipher); |
409 | exit(3); | 416 | exit(3); |
410 | } | 417 | } |