diff options
Diffstat (limited to 'openssl/trunk/crypto/evp/evp_test.c')
-rw-r--r-- | openssl/trunk/crypto/evp/evp_test.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/openssl/trunk/crypto/evp/evp_test.c b/openssl/trunk/crypto/evp/evp_test.c index 3bf8e9ab..6ecbecce 100644 --- a/openssl/trunk/crypto/evp/evp_test.c +++ b/openssl/trunk/crypto/evp/evp_test.c @@ -417,6 +417,13 @@ int main(int argc,char **argv) continue; } #endif +#ifdef OPENSSL_NO_CAMELLIA + if (strstr(cipher, "CAMELLIA") == cipher) + { + fprintf(stdout, "Cipher disabled, skipping %s\n", cipher); + continue; + } +#endif fprintf(stderr,"Can't find %s\n",cipher); EXIT(3); } |