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
Follow the setup instructions in the [cargo-fuzz documentation](https://rust-fuzz.github.io/book/cargo-fuzz/setup.html)
6
+
7
+
## Running Fuzz Tests
8
+
9
+
To run the fuzz tests, use the following command:
10
+
11
+
* for the `extract_public_key_from_der` target:
12
+
13
+
```bash
14
+
cargo +nightly fuzz run extract_public_key_from_der
15
+
```
16
+
17
+
## Limitations
18
+
19
+
* More fuzz targets need to be added.
20
+
* It would be much more efficient to run [structure-aware fuzzing](https://rust-fuzz.github.io/book/cargo-fuzz/structure-aware-fuzzing.html), which requires a custom corpus.
0 commit comments