This commit is contained in:
Andrea Fioraldi 2021-04-07 16:39:51 +02:00
parent 6d2ad10e3f
commit 381aa3c052
9 changed files with 19 additions and 1 deletions

View File

@ -11,5 +11,12 @@
- [Baby Fuzzer](./baby_fuzzer.md) - [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