Merge branch 'dev' of github.com:aflplusplus/libaflrs into dev

This commit is contained in:
Dominik Maier 2021-04-07 19:53:20 +02:00
commit 52b2a1d98c
9 changed files with 19 additions and 1 deletions

View File

@ -11,5 +11,12 @@
- [Baby Fuzzer](./baby_fuzzer.md)
- [Core Concepts](./core_concepts.md)
- [Design](./design/design.md)
- [Core Concepts](./design/core_concepts.md)
- [Architecture](./design/architecture.md)
- [The State](./design/state.md)
- [Understanding Metadata](./medatata/metadata.md)
- [Definition](./medatata/definition.md)
- [(De)Serialization](./medatata/de_serialization.md)
- [Usage](./medatata/usage.md)

View File

@ -0,0 +1,3 @@
# Architecture
The LibAFL architecture

View File

@ -0,0 +1,3 @@
# Design
In this chapter, we introduce the abstract Core Concepts behind LibAFL, we then discuss how we designed the library to take into account these concepts while allowing code reuse and extensibility.

1
docs/src/design/state.md Normal file
View File

@ -0,0 +1 @@
# The State

View File

@ -0,0 +1 @@
# (De)Serialization

View File

@ -0,0 +1 @@
# Definition

View File

@ -0,0 +1 @@
# Understanding Metadata

View File

@ -0,0 +1 @@
# Usage