Add support for fuzzing with AFL
[openssl.git] / fuzz / bignum.c
index 28a439e7d72f2d4950300a01186dd9ee63442bcd..643e6e7c658259d0234825937ba70fceaa4173ad 100644 (file)
@@ -17,7 +17,7 @@
 #include <openssl/bn.h>
 #include "fuzzer.h"
 
-int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
     int success = 0;
     static BN_CTX *ctx;
     static BN_MONT_CTX *mont;