From 8adb3dbae070d097e78bcc87a567ccd28d073da5 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Thu, 1 May 2014 16:06:24 +0000 Subject: Provide an EVP implementation for ChaCha. ok miod@ --- src/regress/lib/libcrypto/evp/evptest.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/regress/lib/libcrypto/evp/evptest.c') diff --git a/src/regress/lib/libcrypto/evp/evptest.c b/src/regress/lib/libcrypto/evp/evptest.c index 164d8f3e01..de1bcce41d 100644 --- a/src/regress/lib/libcrypto/evp/evptest.c +++ b/src/regress/lib/libcrypto/evp/evptest.c @@ -428,6 +428,13 @@ int main(int argc,char **argv) fprintf(stdout, "Cipher disabled, skipping %s\n", cipher); continue; } +#endif +#ifdef OPENSSL_NO_CHACHA + if (strstr(cipher, "ChaCha") == 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-55-g6feb