New Configure option no-<cipher> (rsa, idea, rc5, ...).
[openssl.git] / crypto / bf / bftest.c
index 091c8081a95b03b70dbeabb5a509ce7580097990..80182c0a2f210cc9142f91db455a80a3ff3543da 100644 (file)
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
+
+#ifdef NO_BF
+int main(int argc, char *argv[])
+{
+    printf("No BF support\n");
+    return(0);
+}
+#else
 #include <openssl/blowfish.h>
 
 char *bf_key[2]={
@@ -511,3 +519,4 @@ static int test(void)
 
        return(err);
        }
+#endif