Line data Source code
1 : #if !FD_HAS_HOSTED 2 : #error "This target requires FD_HAS_HOSTED" 3 : #endif 4 : 5 : #include <assert.h> 6 : #include <stdio.h> 7 : #include <stdlib.h> 8 : 9 : #include "../../util/fd_util.h" 10 : #include "../../util/sanitize/fd_fuzz.h" 11 : #include "fd_sha512.h" 12 : 13 : int 14 : LLVMFuzzerInitialize( int * argc, 15 18 : char *** argv ) { 16 : /* Set up shell without signal handlers */ 17 18 : putenv( "FD_LOG_BACKTRACE=0" ); 18 18 : fd_boot( argc, argv ); 19 18 : atexit( fd_halt ); 20 18 : return 0; 21 18 : } 22 : 23 : int 24 : LLVMFuzzerTestOneInput( uchar const * data, 25 : ulong size ) { 26 : // hash single message 27 : char const * msg = ( char const * ) data; 28 : 29 : uchar hash1[ 48 ] __attribute__((aligned(64))); 30 : uchar hash2[ 48 ] __attribute__((aligned(64))); 31 : 32 : fd_sha384_t sha[1]; 33 : assert( fd_sha384_init( sha ) == sha ); 34 : assert( fd_sha384_append( sha, msg, size ) == sha ); 35 : assert( fd_sha384_fini( sha, hash1 ) == hash1 ); 36 : 37 : assert( fd_sha384_hash( data, size, hash2 ) == hash2 ); 38 : 39 : assert( !memcmp( hash1, hash2, 48UL ) ); 40 : 41 : FD_FUZZ_MUST_BE_COVERED; 42 : return 0; 43 : }