mutators.h (591B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 * You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 #ifndef ASN1_MUTATORS_H_ 6 #define ASN1_MUTATORS_H_ 7 8 #include <cstddef> 9 #include <cstdint> 10 11 namespace ASN1Mutators { 12 13 size_t FlipConstructed(uint8_t *data, size_t size, size_t maxSize, 14 unsigned int seed); 15 size_t ChangeType(uint8_t *data, size_t size, size_t maxSize, 16 unsigned int seed); 17 18 } // namespace ASN1Mutators 19 20 #endif // ASN1_MUTATORS_H_