From f3dea9a5958b576345bae710c0acd2e52ecde0c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bodo=20M=C3=B6ller?= Date: Fri, 9 Jun 2006 15:44:59 +0000 Subject: Camellia cipher, contributed by NTT Submitted by: Masashi Fujita Reviewed by: Bodo Moeller --- crypto/evp/evp_test.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'crypto/evp/evp_test.c') diff --git a/crypto/evp/evp_test.c b/crypto/evp/evp_test.c index 3bf8e9ab27..6ecbecce75 100644 --- a/crypto/evp/evp_test.c +++ b/crypto/evp/evp_test.c @@ -416,6 +416,13 @@ int main(int argc,char **argv) fprintf(stdout, "Cipher disabled, skipping %s\n", cipher); 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); -- cgit v1.2.3