You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I' trying to sidefuzz the sha3 implementation of RustCrypto, but it gives the following error: Error: wasm error: Function: Module doesn't have export input_is_str
Here is the code:
use sha3::{Digest,Sha3_512};#[no_mangle]pubextern"C"fnfuzz(){let input = sidefuzz::fetch_input(80);
sidefuzz::black_box(Sha3_512::default().chain(input).result());}
Do you know what is going wrong?
The text was updated successfully, but these errors were encountered:
I didn't look at it again until now, but updating my sidefuzz executable and using the git version the library instead of version 0.1.2 seems to have fixed the problem.
Hi,
I' trying to sidefuzz the sha3 implementation of RustCrypto, but it gives the following error:
Error: wasm error: Function: Module doesn't have export input_is_str
Here is the code:
Do you know what is going wrong?
The text was updated successfully, but these errors were encountered: