aboutsummaryrefslogtreecommitdiff
path: root/FUZZING.md
diff options
context:
space:
mode:
authorAdam Langley <alangley@gmail.com>2016-05-20 10:51:48 -0700
committerAdam Langley <agl@google.com>2016-05-26 17:59:10 +0000
commitd09175ffe335d9be6846b4ac5e9e622d96213a00 (patch)
treef4b68d43bbedb052902c3f0c87d581066ef4d519 /FUZZING.md
parent1cb405d96b11db5767446766d76516534067bbd1 (diff)
downloadboringssl-d09175ffe335d9be6846b4ac5e9e622d96213a00.zip
boringssl-d09175ffe335d9be6846b4ac5e9e622d96213a00.tar.gz
boringssl-d09175ffe335d9be6846b4ac5e9e622d96213a00.tar.bz2
Replace base64 decoding.
This code has caused a long history of problems. This change rewrites it completely with something that is, hopefully, much simplier and robust and adds more testing. Change-Id: Ibeef51f9386afd95d5b73316e451eb3a2d7ec4e0 Reviewed-on: https://boringssl-review.googlesource.com/8033 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'FUZZING.md')
-rw-r--r--FUZZING.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/FUZZING.md b/FUZZING.md
index 86d0930..9f4edef 100644
--- a/FUZZING.md
+++ b/FUZZING.md
@@ -30,15 +30,15 @@ The arguments to `jobs` and `workers` should be the number of cores that you wis
The recommended values of `max_len` for each test are:
-| Test | `max_len` value |
-|-----------|-----------------|
-| `cert` | 3072 |
-| `client` | 20000 |
-| `pkcs8` | 2048 |
-| `privkey` | 2048 |
-| `server` | 4096 |
-| `spki` | 1024 |
-
+| Test | `max_len` value |
+|------------|-----------------|
+| `cert` | 3072 |
+| `client` | 20000 |
+| `pkcs8` | 2048 |
+| `privkey` | 2048 |
+| `server` | 4096 |
+| `spki` | 1024 |
+| `read_pem` | 512 |
These were determined by rounding up the length of the largest case in the corpus.