diff options
author | Daniel Schadt <kingdread@gmx.de> | 2025-04-17 12:56:44 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2025-04-17 12:56:44 +0200 |
commit | 9287a6cdc37c7c37e744f8418a13a74bb0e629ef (patch) | |
tree | f4d349e0d4ece886fda31f755b08163485a7a02e /aezref/Cargo.toml | |
parent | 66814768f8c172d6996d037064924c908245a951 (diff) | |
download | zears-9287a6cdc37c7c37e744f8418a13a74bb0e629ef.tar.gz zears-9287a6cdc37c7c37e744f8418a13a74bb0e629ef.tar.bz2 zears-9287a6cdc37c7c37e744f8418a13a74bb0e629ef.zip |
fuzz against slow aez-ref, not fast aez-ni
Two reasons:
First, this allows us to test more of the algorithm, as the (slow)
reference implementation supports multiple associated data items, large
values for tau, ...
Second, this avoids the segfault crash, which is a limit of the fast
implementation (the assumption there is that data is aligned properly,
and even a read out-of-bounds will not cause a segfault).
Diffstat (limited to 'aezref/Cargo.toml')
-rw-r--r-- | aezref/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/aezref/Cargo.toml b/aezref/Cargo.toml new file mode 100644 index 0000000..51a864f --- /dev/null +++ b/aezref/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "aezref" +version = "0.1.0" +edition = "2024" +build = "build.rs" + +[dependencies] + +[build-dependencies] +cc = "1.2" |