diff options
author | van Hauser <vh@thc.org> | 2020-06-29 18:19:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-29 18:19:35 +0200 |
commit | 8f1b78f49e8efef8ec089230d732cdee7b37fa9a (patch) | |
tree | 4cb5e6e59f24f488e58fbb1aced2dbc0e6550c15 /custom_mutators/radamsa/radamsa.h | |
parent | 12bdefe00e38cdc3dd8cb028eeac325ab2e94e16 (diff) | |
parent | 3a0c91b86205bfebb8ec7e62a2e7b0bfcec2e407 (diff) | |
download | afl++-8f1b78f49e8efef8ec089230d732cdee7b37fa9a.tar.gz |
Merge pull request #426 from AFLplusplus/dev
Dev
Diffstat (limited to 'custom_mutators/radamsa/radamsa.h')
-rw-r--r-- | custom_mutators/radamsa/radamsa.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/custom_mutators/radamsa/radamsa.h b/custom_mutators/radamsa/radamsa.h new file mode 100644 index 00000000..f698930c --- /dev/null +++ b/custom_mutators/radamsa/radamsa.h @@ -0,0 +1,10 @@ +#include <inttypes.h> +#include <stddef.h> + +void radamsa_init(void); + +size_t radamsa(uint8_t *ptr, size_t len, uint8_t *target, size_t max, + unsigned int seed); + +size_t radamsa_inplace(uint8_t *ptr, size_t len, size_t max, unsigned int seed); + |