-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: bytemare <3641580+bytemare@users.noreply.github.com>
- Loading branch information
Showing
4 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM gcr.io/oss-fuzz-base/base-builder-go | ||
RUN git clone --depth 1 https://github.com/bytemare/opaque.git | ||
COPY . $SRC/opaque | ||
WORKDIR $SRC/opaque | ||
COPY ./.clusterfuzzlite/build.sh $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash -eu | ||
|
||
compile_native_go_fuzzer github.com/bytemare/opaque/test FuzzConfiguration fuzz_Configuration fuzz | ||
compile_native_go_fuzzer github.com/bytemare/opaque/test FuzzDeserializeRegistrationRequest fuzz_DeserializeRegistrationRequest fuzz | ||
compile_native_go_fuzzer github.com/bytemare/opaque/test FuzzDeserializeRegistrationResponse fuzz_DeserializeRegistrationResponse fuzz | ||
compile_native_go_fuzzer github.com/bytemare/opaque/test FuzzDeserializeRegistrationRecord fuzz_DeserializeRegistrationRecord fuzz | ||
compile_native_go_fuzzer github.com/bytemare/opaque/test FuzzDeserializeKE1 fuzz_DeserializeKE1 fuzz | ||
compile_native_go_fuzzer github.com/bytemare/opaque/test FuzzDeserializeKE2 fuzz_DeserializeKE2 fuzz | ||
compile_native_go_fuzzer github.com/bytemare/opaque/test FuzzDeserializeKE3 fuzz_DeserializeKE3 fuzz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
homepage: "https://github.com/bytemare/opaque" | ||
language: go | ||
sanitizers: | ||
- address | ||
- undefined | ||
- memory | ||
architectures: | ||
- x86_64 | ||
- i386 | ||
main_repo: 'https://github.com/bytemare/opaque.git' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters