initial commit
Signed-off-by: Kamal Tufekcic <kamal@lo.sh>
This commit is contained in:
commit
d73755a275
165830 changed files with 568244 additions and 0 deletions
918
soliton/fuzz/Cargo.lock
generated
Normal file
918
soliton/fuzz/Cargo.lock
generated
Normal file
|
|
@ -0,0 +1,918 @@
|
|||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 4
|
||||
|
||||
[[package]]
|
||||
name = "aead"
|
||||
version = "0.5.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
|
||||
dependencies = [
|
||||
"crypto-common 0.1.7",
|
||||
"generic-array",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "arbitrary"
|
||||
version = "1.4.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
||||
|
||||
[[package]]
|
||||
name = "argon2"
|
||||
version = "0.5.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
|
||||
dependencies = [
|
||||
"base64ct",
|
||||
"blake2",
|
||||
"cpufeatures 0.2.17",
|
||||
"password-hash",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "autocfg"
|
||||
version = "1.5.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
||||
|
||||
[[package]]
|
||||
name = "base64ct"
|
||||
version = "1.8.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
||||
|
||||
[[package]]
|
||||
name = "blake2"
|
||||
version = "0.10.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
|
||||
dependencies = [
|
||||
"digest 0.10.7",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "block-buffer"
|
||||
version = "0.10.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
||||
dependencies = [
|
||||
"generic-array",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "block-buffer"
|
||||
version = "0.11.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "96eb4cdd6cf1b31d671e9efe75c5d1ec614776856cefbe109ca373554a6d514f"
|
||||
dependencies = [
|
||||
"hybrid-array 0.4.7",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "bumpalo"
|
||||
version = "3.20.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
||||
|
||||
[[package]]
|
||||
name = "cc"
|
||||
version = "1.2.56"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
|
||||
dependencies = [
|
||||
"find-msvc-tools",
|
||||
"jobserver",
|
||||
"libc",
|
||||
"shlex",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cfg-if"
|
||||
version = "1.0.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
||||
|
||||
[[package]]
|
||||
name = "chacha20"
|
||||
version = "0.9.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"cipher",
|
||||
"cpufeatures 0.2.17",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "chacha20poly1305"
|
||||
version = "0.10.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
|
||||
dependencies = [
|
||||
"aead",
|
||||
"chacha20",
|
||||
"cipher",
|
||||
"poly1305",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cipher"
|
||||
version = "0.4.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
||||
dependencies = [
|
||||
"crypto-common 0.1.7",
|
||||
"inout",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "const-oid"
|
||||
version = "0.9.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
||||
|
||||
[[package]]
|
||||
name = "const-oid"
|
||||
version = "0.10.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
||||
|
||||
[[package]]
|
||||
name = "cpufeatures"
|
||||
version = "0.2.17"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
||||
dependencies = [
|
||||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cpufeatures"
|
||||
version = "0.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
||||
dependencies = [
|
||||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crypto-common"
|
||||
version = "0.1.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
||||
dependencies = [
|
||||
"generic-array",
|
||||
"typenum",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crypto-common"
|
||||
version = "0.2.0-rc.15"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6f8441110cea75afde0b89a8d796e2bc67b23432f5a9566cb15d9d365d91a2b0"
|
||||
dependencies = [
|
||||
"hybrid-array 0.4.7",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "curve25519-dalek"
|
||||
version = "4.1.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"cpufeatures 0.2.17",
|
||||
"curve25519-dalek-derive",
|
||||
"digest 0.10.7",
|
||||
"fiat-crypto",
|
||||
"rustc_version",
|
||||
"subtle",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "curve25519-dalek-derive"
|
||||
version = "0.1.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "der"
|
||||
version = "0.7.10"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
||||
dependencies = [
|
||||
"const-oid 0.9.6",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "der"
|
||||
version = "0.8.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
|
||||
dependencies = [
|
||||
"const-oid 0.10.2",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "digest"
|
||||
version = "0.10.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
||||
dependencies = [
|
||||
"block-buffer 0.10.4",
|
||||
"crypto-common 0.1.7",
|
||||
"subtle",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "digest"
|
||||
version = "0.11.0-rc.11"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "02b42f1d9edf5207c137646b568a0168ca0ec25b7f9eaf7f9961da51a3d91cea"
|
||||
dependencies = [
|
||||
"block-buffer 0.11.0",
|
||||
"const-oid 0.10.2",
|
||||
"crypto-common 0.2.0-rc.15",
|
||||
"subtle",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ed25519"
|
||||
version = "2.2.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
|
||||
dependencies = [
|
||||
"pkcs8 0.10.2",
|
||||
"signature 2.2.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ed25519-dalek"
|
||||
version = "2.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
|
||||
dependencies = [
|
||||
"curve25519-dalek",
|
||||
"ed25519",
|
||||
"serde",
|
||||
"sha2",
|
||||
"subtle",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fiat-crypto"
|
||||
version = "0.2.9"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
||||
|
||||
[[package]]
|
||||
name = "find-msvc-tools"
|
||||
version = "0.1.9"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
||||
|
||||
[[package]]
|
||||
name = "generic-array"
|
||||
version = "0.14.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
||||
dependencies = [
|
||||
"typenum",
|
||||
"version_check",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "getrandom"
|
||||
version = "0.2.17"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"js-sys",
|
||||
"libc",
|
||||
"wasi",
|
||||
"wasm-bindgen",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "getrandom"
|
||||
version = "0.3.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"js-sys",
|
||||
"libc",
|
||||
"r-efi",
|
||||
"wasip2",
|
||||
"wasm-bindgen",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "hkdf"
|
||||
version = "0.13.0-rc.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cbb55385998ae66b8d2d5143c05c94b9025ab863966f0c94ce7a5fde30105092"
|
||||
dependencies = [
|
||||
"hmac",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "hmac"
|
||||
version = "0.13.0-rc.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ef451d73f36d8a3f93ad32c332ea01146c9650e1ec821a9b0e46c01277d544f8"
|
||||
dependencies = [
|
||||
"digest 0.11.0-rc.11",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "hybrid-array"
|
||||
version = "0.2.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f2d35805454dc9f8662a98d6d61886ffe26bd465f5960e0e55345c70d5c0d2a9"
|
||||
dependencies = [
|
||||
"typenum",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "hybrid-array"
|
||||
version = "0.4.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e1b229d73f5803b562cc26e4da0396c8610a4ee209f4fac8fa4f8d709166dc45"
|
||||
dependencies = [
|
||||
"typenum",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "inout"
|
||||
version = "0.1.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
||||
dependencies = [
|
||||
"generic-array",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "jobserver"
|
||||
version = "0.1.34"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
||||
dependencies = [
|
||||
"getrandom 0.3.4",
|
||||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "js-sys"
|
||||
version = "0.3.77"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
||||
dependencies = [
|
||||
"once_cell",
|
||||
"wasm-bindgen",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "keccak"
|
||||
version = "0.1.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
|
||||
dependencies = [
|
||||
"cpufeatures 0.2.17",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "keccak"
|
||||
version = "0.2.0-rc.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "882b69cb15b1f78b51342322a97ccd16f5123d1dc8a3da981a95244f488e8692"
|
||||
dependencies = [
|
||||
"cpufeatures 0.3.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "kem"
|
||||
version = "0.3.0-pre.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2b8645470337db67b01a7f966decf7d0bafedbae74147d33e641c67a91df239f"
|
||||
dependencies = [
|
||||
"rand_core 0.6.4",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "libc"
|
||||
version = "0.2.182"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
|
||||
|
||||
[[package]]
|
||||
name = "libfuzzer-sys"
|
||||
version = "0.4.12"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f12a681b7dd8ce12bff52488013ba614b869148d54dd79836ab85aafdd53f08d"
|
||||
dependencies = [
|
||||
"arbitrary",
|
||||
"cc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "libsoliton"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"argon2",
|
||||
"chacha20poly1305",
|
||||
"crypto-common 0.2.0-rc.15",
|
||||
"curve25519-dalek",
|
||||
"digest 0.11.0-rc.11",
|
||||
"ed25519-dalek",
|
||||
"getrandom 0.2.17",
|
||||
"getrandom 0.3.4",
|
||||
"hkdf",
|
||||
"hmac",
|
||||
"keccak 0.2.0-rc.2",
|
||||
"kem",
|
||||
"ml-dsa",
|
||||
"ml-kem",
|
||||
"poly1305",
|
||||
"ruzstd",
|
||||
"sha2",
|
||||
"sha3 0.11.0-rc.7",
|
||||
"subtle",
|
||||
"thiserror",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "libsoliton-fuzz"
|
||||
version = "0.0.0"
|
||||
dependencies = [
|
||||
"ed25519-dalek",
|
||||
"libfuzzer-sys",
|
||||
"libsoliton",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "log"
|
||||
version = "0.4.29"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
||||
|
||||
[[package]]
|
||||
name = "ml-dsa"
|
||||
version = "0.1.0-rc.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "af6e554a2affc86740759dbe568a92abd58b47fea4e28ebe1b7bb4da99e490d4"
|
||||
dependencies = [
|
||||
"const-oid 0.10.2",
|
||||
"hybrid-array 0.4.7",
|
||||
"module-lattice",
|
||||
"pkcs8 0.11.0-rc.11",
|
||||
"rand_core 0.10.0",
|
||||
"sha3 0.11.0-rc.7",
|
||||
"signature 3.0.0-rc.10",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ml-kem"
|
||||
version = "0.2.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8de49b3df74c35498c0232031bb7e85f9389f913e2796169c8ab47a53993a18f"
|
||||
dependencies = [
|
||||
"hybrid-array 0.2.3",
|
||||
"kem",
|
||||
"rand_core 0.6.4",
|
||||
"sha3 0.10.8",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "module-lattice"
|
||||
version = "0.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6dfecc750073acc09af2f8899b2342d520d570392ba1c3aed53eeb0d84ca4103"
|
||||
dependencies = [
|
||||
"hybrid-array 0.4.7",
|
||||
"num-traits",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "num-traits"
|
||||
version = "0.2.19"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
||||
dependencies = [
|
||||
"autocfg",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "once_cell"
|
||||
version = "1.21.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
||||
|
||||
[[package]]
|
||||
name = "opaque-debug"
|
||||
version = "0.3.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
||||
|
||||
[[package]]
|
||||
name = "password-hash"
|
||||
version = "0.5.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
|
||||
dependencies = [
|
||||
"base64ct",
|
||||
"rand_core 0.6.4",
|
||||
"subtle",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pkcs8"
|
||||
version = "0.10.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
||||
dependencies = [
|
||||
"der 0.7.10",
|
||||
"spki 0.7.3",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pkcs8"
|
||||
version = "0.11.0-rc.11"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "12922b6296c06eb741b02d7b5161e3aaa22864af38dfa025a1a3ba3f68c84577"
|
||||
dependencies = [
|
||||
"der 0.8.0",
|
||||
"spki 0.8.0-rc.4",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "poly1305"
|
||||
version = "0.8.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
|
||||
dependencies = [
|
||||
"cpufeatures 0.2.17",
|
||||
"opaque-debug",
|
||||
"universal-hash",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "proc-macro2"
|
||||
version = "1.0.106"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
||||
dependencies = [
|
||||
"unicode-ident",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "quote"
|
||||
version = "1.0.44"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "r-efi"
|
||||
version = "5.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
||||
|
||||
[[package]]
|
||||
name = "rand_core"
|
||||
version = "0.6.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
||||
dependencies = [
|
||||
"getrandom 0.2.17",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rand_core"
|
||||
version = "0.10.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
|
||||
|
||||
[[package]]
|
||||
name = "rustc_version"
|
||||
version = "0.4.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
||||
dependencies = [
|
||||
"semver",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ruzstd"
|
||||
version = "0.8.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e5ff0cc5e135c8870a775d3320910cd9b564ec036b4dc0b8741629020be63f01"
|
||||
dependencies = [
|
||||
"twox-hash",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "semver"
|
||||
version = "1.0.27"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
||||
|
||||
[[package]]
|
||||
name = "serde"
|
||||
version = "1.0.228"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
||||
dependencies = [
|
||||
"serde_core",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "serde_core"
|
||||
version = "1.0.228"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
||||
dependencies = [
|
||||
"serde_derive",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "serde_derive"
|
||||
version = "1.0.228"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "sha2"
|
||||
version = "0.10.9"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"cpufeatures 0.2.17",
|
||||
"digest 0.10.7",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "sha3"
|
||||
version = "0.10.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
|
||||
dependencies = [
|
||||
"digest 0.10.7",
|
||||
"keccak 0.1.6",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "sha3"
|
||||
version = "0.11.0-rc.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c5bfe7820113e633d8886e839aae78c1184b8d7011000db6bc7eb61e34f28350"
|
||||
dependencies = [
|
||||
"digest 0.11.0-rc.11",
|
||||
"keccak 0.2.0-rc.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "shlex"
|
||||
version = "1.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
||||
|
||||
[[package]]
|
||||
name = "signature"
|
||||
version = "2.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
||||
dependencies = [
|
||||
"rand_core 0.6.4",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "signature"
|
||||
version = "3.0.0-rc.10"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7f1880df446116126965eeec169136b2e0251dba37c6223bcc819569550edea3"
|
||||
dependencies = [
|
||||
"digest 0.11.0-rc.11",
|
||||
"rand_core 0.10.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "spki"
|
||||
version = "0.7.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
||||
dependencies = [
|
||||
"base64ct",
|
||||
"der 0.7.10",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "spki"
|
||||
version = "0.8.0-rc.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8baeff88f34ed0691978ec34440140e1572b68c7dd4a495fd14a3dc1944daa80"
|
||||
dependencies = [
|
||||
"base64ct",
|
||||
"der 0.8.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "subtle"
|
||||
version = "2.6.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
||||
|
||||
[[package]]
|
||||
name = "syn"
|
||||
version = "2.0.117"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"unicode-ident",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "thiserror"
|
||||
version = "2.0.18"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
||||
dependencies = [
|
||||
"thiserror-impl",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "thiserror-impl"
|
||||
version = "2.0.18"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "twox-hash"
|
||||
version = "2.1.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
|
||||
|
||||
[[package]]
|
||||
name = "typenum"
|
||||
version = "1.19.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
||||
|
||||
[[package]]
|
||||
name = "unicode-ident"
|
||||
version = "1.0.24"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
||||
|
||||
[[package]]
|
||||
name = "universal-hash"
|
||||
version = "0.5.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
|
||||
dependencies = [
|
||||
"crypto-common 0.1.7",
|
||||
"subtle",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "version_check"
|
||||
version = "0.9.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
||||
|
||||
[[package]]
|
||||
name = "wasi"
|
||||
version = "0.11.1+wasi-snapshot-preview1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
||||
|
||||
[[package]]
|
||||
name = "wasip2"
|
||||
version = "1.0.2+wasi-0.2.9"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
||||
dependencies = [
|
||||
"wit-bindgen",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "wasm-bindgen"
|
||||
version = "0.2.100"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"once_cell",
|
||||
"wasm-bindgen-macro",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "wasm-bindgen-backend"
|
||||
version = "0.2.100"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
||||
dependencies = [
|
||||
"bumpalo",
|
||||
"log",
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
"wasm-bindgen-shared",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "wasm-bindgen-macro"
|
||||
version = "0.2.100"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
||||
dependencies = [
|
||||
"quote",
|
||||
"wasm-bindgen-macro-support",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "wasm-bindgen-macro-support"
|
||||
version = "0.2.100"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
"wasm-bindgen-backend",
|
||||
"wasm-bindgen-shared",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "wasm-bindgen-shared"
|
||||
version = "0.2.100"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
||||
dependencies = [
|
||||
"unicode-ident",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "wit-bindgen"
|
||||
version = "0.51.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
||||
|
||||
[[package]]
|
||||
name = "zeroize"
|
||||
version = "1.8.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
||||
dependencies = [
|
||||
"zeroize_derive",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "zeroize_derive"
|
||||
version = "1.4.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
172
soliton/fuzz/Cargo.toml
Normal file
172
soliton/fuzz/Cargo.toml
Normal file
|
|
@ -0,0 +1,172 @@
|
|||
[package]
|
||||
name = "libsoliton-fuzz"
|
||||
version = "0.0.0"
|
||||
publish = false
|
||||
edition = "2024"
|
||||
|
||||
[workspace]
|
||||
|
||||
[package.metadata]
|
||||
cargo-fuzz = true
|
||||
|
||||
[dependencies]
|
||||
libfuzzer-sys = "=0.4.12"
|
||||
# Pin to match workspace — separate workspace, so cargo update here could
|
||||
# otherwise pull a different zeroize than the main build tested against.
|
||||
zeroize = "=1.8.2"
|
||||
# Match main workspace features — separate workspace means Cargo does not
|
||||
# unify features. Without zeroize, ed25519-dalek types lack ZeroizeOnDrop.
|
||||
ed25519-dalek = { version = "=2.2.0", default-features = false, features = ["zeroize", "std"] }
|
||||
|
||||
[dependencies.libsoliton]
|
||||
path = ".."
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_storage_decrypt_blob"
|
||||
path = "fuzz_targets/fuzz_storage_decrypt_blob.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_ratchet_decrypt"
|
||||
path = "fuzz_targets/fuzz_ratchet_decrypt.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_ratchet_decrypt_stateful"
|
||||
path = "fuzz_targets/fuzz_ratchet_decrypt_stateful.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_identity_from_bytes"
|
||||
path = "fuzz_targets/fuzz_identity_from_bytes.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_ed25519_verify"
|
||||
path = "fuzz_targets/fuzz_ed25519_verify.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_hybrid_verify"
|
||||
path = "fuzz_targets/fuzz_hybrid_verify.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_ratchet_encrypt"
|
||||
path = "fuzz_targets/fuzz_ratchet_encrypt.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_decrypt_first_message"
|
||||
path = "fuzz_targets/fuzz_decrypt_first_message.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_kex_receive_session"
|
||||
path = "fuzz_targets/fuzz_kex_receive_session.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_storage_encrypt_blob"
|
||||
path = "fuzz_targets/fuzz_storage_encrypt_blob.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_auth_respond"
|
||||
path = "fuzz_targets/fuzz_auth_respond.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_kex_verify_bundle"
|
||||
path = "fuzz_targets/fuzz_kex_verify_bundle.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_verification_phrase"
|
||||
path = "fuzz_targets/fuzz_verification_phrase.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_ratchet_roundtrip"
|
||||
path = "fuzz_targets/fuzz_ratchet_roundtrip.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_xwing_roundtrip"
|
||||
path = "fuzz_targets/fuzz_xwing_roundtrip.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_identity_sign_verify"
|
||||
path = "fuzz_targets/fuzz_identity_sign_verify.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_session_init_roundtrip"
|
||||
path = "fuzz_targets/fuzz_session_init_roundtrip.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_call_derive"
|
||||
path = "fuzz_targets/fuzz_call_derive.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_auth_verify"
|
||||
path = "fuzz_targets/fuzz_auth_verify.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_ratchet_from_bytes_epoch"
|
||||
path = "fuzz_targets/fuzz_ratchet_from_bytes_epoch.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_kex_decode_receive"
|
||||
path = "fuzz_targets/fuzz_kex_decode_receive.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_dm_queue_roundtrip"
|
||||
path = "fuzz_targets/fuzz_dm_queue_roundtrip.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_dm_queue_decrypt_blob"
|
||||
path = "fuzz_targets/fuzz_dm_queue_decrypt_blob.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_argon2_params"
|
||||
path = "fuzz_targets/fuzz_argon2_params.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_stream_decrypt"
|
||||
path = "fuzz_targets/fuzz_stream_decrypt.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_stream_encrypt_decrypt"
|
||||
path = "fuzz_targets/fuzz_stream_encrypt_decrypt.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_stream_encrypt_at"
|
||||
path = "fuzz_targets/fuzz_stream_encrypt_at.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_stream_decrypt_at"
|
||||
path = "fuzz_targets/fuzz_stream_decrypt_at.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_ratchet_state_machine"
|
||||
path = "fuzz_targets/fuzz_ratchet_state_machine.rs"
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "gen_corpus"
|
||||
path = "gen_corpus.rs"
|
||||
doc = false
|
||||
BIN
soliton/fuzz/corpus/fuzz_argon2_params/00a3a275e6b969ae9f0957c36545f992d48341a6
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/00a3a275e6b969ae9f0957c36545f992d48341a6
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/02e4622a98ffb160d2ab134786a125b494e9bea5
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/02e4622a98ffb160d2ab134786a125b494e9bea5
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/02ff74ea547817d960a0f598e7c29c3409588b29
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/02ff74ea547817d960a0f598e7c29c3409588b29
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/03a824a8bb270eee464a2c35af769763e91ee811
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/03a824a8bb270eee464a2c35af769763e91ee811
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/03cef0b0b39a1a19982efc307eb80f3bb868dc10
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/03cef0b0b39a1a19982efc307eb80f3bb868dc10
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/042ea48c2645d355aa930281c2006218bfd35948
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/042ea48c2645d355aa930281c2006218bfd35948
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/05a80cd6ed5a7927c94d75cca191577767c4bfab
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/05a80cd6ed5a7927c94d75cca191577767c4bfab
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/05e3c0313f095eef093652478d0067e51d3e371a
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/05e3c0313f095eef093652478d0067e51d3e371a
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/06cf134b890cdff1a194443715cdc414eb11731c
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/06cf134b890cdff1a194443715cdc414eb11731c
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/076da1fd33fbfd0216722c126686f1c5ba3f4721
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/076da1fd33fbfd0216722c126686f1c5ba3f4721
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/08a16dcca71620a10a59210e28ab0ce55675c408
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/08a16dcca71620a10a59210e28ab0ce55675c408
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/09cb0cc352ad5a4c8d70fe0347b874a50c8c8c1d
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/09cb0cc352ad5a4c8d70fe0347b874a50c8c8c1d
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/09cf8a0bba059b64d9254cb5727b4ee02404b9ad
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/09cf8a0bba059b64d9254cb5727b4ee02404b9ad
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0a303fa88a5707e28837c54543072163cca196b2
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0a303fa88a5707e28837c54543072163cca196b2
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0aab63d644c5a28f01243395ca0395ce36c5a74f
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0aab63d644c5a28f01243395ca0395ce36c5a74f
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0c68e5d1867ca2371848059e9c50174d01cd3fc0
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0c68e5d1867ca2371848059e9c50174d01cd3fc0
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0d1127fca7d27e7568f23893a1f0181c41888ec1
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0d1127fca7d27e7568f23893a1f0181c41888ec1
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0d4b9115d322c9d2340d0a96363a100febf31522
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0d4b9115d322c9d2340d0a96363a100febf31522
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0e7640f02bf52200c9f4f7a753439f03546e71f4
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0e7640f02bf52200c9f4f7a753439f03546e71f4
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0e8154a6b4170195ed044f3acc0b093aa5712f2a
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0e8154a6b4170195ed044f3acc0b093aa5712f2a
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0ecb8c6be484b3ca13375022300bd88d61bd158d
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0ecb8c6be484b3ca13375022300bd88d61bd158d
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0f015092c7c5ccd4f0c7452fbf83956f75814825
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0f015092c7c5ccd4f0c7452fbf83956f75814825
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0f8c26b9e450905e0c84752420d8ac33ba27debc
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/0f8c26b9e450905e0c84752420d8ac33ba27debc
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/10533c7b4e34c4b73092a725e0eae7366c2be725
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/10533c7b4e34c4b73092a725e0eae7366c2be725
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1116266b0203b34bf06ed2c6c704ffb5839e62c6
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1116266b0203b34bf06ed2c6c704ffb5839e62c6
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/123869ddd63cdacba6d5d816549a69fd4ca89de9
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/123869ddd63cdacba6d5d816549a69fd4ca89de9
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/129c6cd19ca455a0b497be4bb23c865ed75c3185
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/129c6cd19ca455a0b497be4bb23c865ed75c3185
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/12e1300b5dbfcb818e9fb058eaae3f99afcb976a
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/12e1300b5dbfcb818e9fb058eaae3f99afcb976a
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/12f4dacc0a8a4cc61bbcdaa906f7f623bfcc93a0
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/12f4dacc0a8a4cc61bbcdaa906f7f623bfcc93a0
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/132ca2484471ae731eabbd6e417298783ff386e1
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/132ca2484471ae731eabbd6e417298783ff386e1
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/135f6d0ecf44c54c2ba87ac6266830233440b258
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/135f6d0ecf44c54c2ba87ac6266830233440b258
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/14e72a9c04aee10ebca6c7a38fe070958c5a2006
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/14e72a9c04aee10ebca6c7a38fe070958c5a2006
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/15b0a6858428252d8cb3e8559233b8b43de64207
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/15b0a6858428252d8cb3e8559233b8b43de64207
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/15bf0e248890fbba3f9b268e85f30d827c8e9b0e
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/15bf0e248890fbba3f9b268e85f30d827c8e9b0e
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1886f380363b75c4ec4cdd21ff821954cd5e4709
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1886f380363b75c4ec4cdd21ff821954cd5e4709
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1931e52c4158110441e83061b33b4b61a78edc78
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1931e52c4158110441e83061b33b4b61a78edc78
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1acb33231343b0381284207072c0040f08928cb4
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1acb33231343b0381284207072c0040f08928cb4
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1ae91dba2943957af4217d73ec69e3570d122c2b
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1ae91dba2943957af4217d73ec69e3570d122c2b
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1afe856e6605aa0670a75601b5aa5c83e2e7b467
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1afe856e6605aa0670a75601b5aa5c83e2e7b467
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1b7836bd4eb6cf4c9511f8ae6e96ba35605a402e
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1b7836bd4eb6cf4c9511f8ae6e96ba35605a402e
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1cba06d789c56b34a18bdf2cb0d42573fe38cd6f
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1cba06d789c56b34a18bdf2cb0d42573fe38cd6f
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1d3734223d4016103d4e1c97646cea0e86d7b892
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1d3734223d4016103d4e1c97646cea0e86d7b892
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1eca7eb0efbcd8de2702f722998e21abfc8e4145
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/1eca7eb0efbcd8de2702f722998e21abfc8e4145
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/200051156af8a4f44dd3190c7df6083585019592
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/200051156af8a4f44dd3190c7df6083585019592
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/22be4ed46351525d7ba797875e60b449e03e1287
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/22be4ed46351525d7ba797875e60b449e03e1287
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/231a89bc78107d1c38467a06a55c290f3fc3a7a1
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/231a89bc78107d1c38467a06a55c290f3fc3a7a1
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/2746976606bd111b2e87cf7c7f109069af8a1298
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/2746976606bd111b2e87cf7c7f109069af8a1298
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/27a99b8394edc84f6b4af723f026435aa5c0e93e
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/27a99b8394edc84f6b4af723f026435aa5c0e93e
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/280fc7a0ff7f866029762c8ec33f7ebd86842975
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/280fc7a0ff7f866029762c8ec33f7ebd86842975
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/28b3be63904b997c9122d1875616068ac41faf40
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/28b3be63904b997c9122d1875616068ac41faf40
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/29926653e8d90074e54e9433f6202ef54df6ced5
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/29926653e8d90074e54e9433f6202ef54df6ced5
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/29ab3e956a0851f56d5005650e64710e5daf6268
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/29ab3e956a0851f56d5005650e64710e5daf6268
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/2adb9e42576c96354240b08c78497d41a836abe6
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/2adb9e42576c96354240b08c78497d41a836abe6
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/2c6b2d0fcb83e702681adc5fb099872971f5bd1c
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/2c6b2d0fcb83e702681adc5fb099872971f5bd1c
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/2e0dbb8c58bec8fa31dd117423352f88c2042588
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/2e0dbb8c58bec8fa31dd117423352f88c2042588
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/2e821425b3c1d8e555c6066c8459cdead4b4017d
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/2e821425b3c1d8e555c6066c8459cdead4b4017d
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/2e9d5579ce5da38796cd8a4288793631d78a150d
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/2e9d5579ce5da38796cd8a4288793631d78a150d
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/2ef648d83a1888e1ed361a292cb7873da560901a
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/2ef648d83a1888e1ed361a292cb7873da560901a
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/30bad8c6acea514e4fd9f053288c63948d4aa0b6
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/30bad8c6acea514e4fd9f053288c63948d4aa0b6
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3151638d5f9f937bd09e6932a3a2417adbec2929
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3151638d5f9f937bd09e6932a3a2417adbec2929
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/32f9a5f861d06c28361e56df8feb40430d3e6cb6
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/32f9a5f861d06c28361e56df8feb40430d3e6cb6
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/334e8e6886b41e40e5f6f2a40a5bdc82583bc1a5
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/334e8e6886b41e40e5f6f2a40a5bdc82583bc1a5
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/33e6c0df86a96c015efb8cc72ed1147737df684e
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/33e6c0df86a96c015efb8cc72ed1147737df684e
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/35b6bee9bb27d780700285c243a7c11995ac7cf0
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/35b6bee9bb27d780700285c243a7c11995ac7cf0
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/35e0a0b434a5a1fa8991ed154a2f89e69aeb78a4
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/35e0a0b434a5a1fa8991ed154a2f89e69aeb78a4
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/36e5ec3c1764734598a4db4280510c6933c4d604
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/36e5ec3c1764734598a4db4280510c6933c4d604
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/376b71cadbb4d060ff1ab74c95a2e8d4502b8aaa
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/376b71cadbb4d060ff1ab74c95a2e8d4502b8aaa
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/37c3b86669f7e9af13c0af0b7dd3342756f2be0a
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/37c3b86669f7e9af13c0af0b7dd3342756f2be0a
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3910b5836114a9c0ed0a351b28de0d7be8021846
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3910b5836114a9c0ed0a351b28de0d7be8021846
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/39576188e470cb6afe275a9ea8b3d026d6701fed
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/39576188e470cb6afe275a9ea8b3d026d6701fed
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3980395b7eb44def93487725936991ab24362f30
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3980395b7eb44def93487725936991ab24362f30
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3a82187a49821db02e20ad3292981f739a79d067
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3a82187a49821db02e20ad3292981f739a79d067
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3a8fd5855f2a20aee47e1840ac084e4385eef4ad
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3a8fd5855f2a20aee47e1840ac084e4385eef4ad
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3ac15ca510ee51a241f1af24b27c80edb8dfe8f5
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3ac15ca510ee51a241f1af24b27c80edb8dfe8f5
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3afea33c7e2061ed78ffc6f7ab67a167b607212e
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3afea33c7e2061ed78ffc6f7ab67a167b607212e
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3b0bac8b4c1ae0e9aed4409eeb0bfde9c2b3202f
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3b0bac8b4c1ae0e9aed4409eeb0bfde9c2b3202f
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3b9b40d9f8e912ae6c40c17ebb8546870c3f54ce
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3b9b40d9f8e912ae6c40c17ebb8546870c3f54ce
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3c3664b9f59e935ef33b2dfa70daf381f6be1aec
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3c3664b9f59e935ef33b2dfa70daf381f6be1aec
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3c46b6d8ef426ae26abca7950946db6167368623
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3c46b6d8ef426ae26abca7950946db6167368623
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3d332b8c5cf23f28956775639a205a14ca589281
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3d332b8c5cf23f28956775639a205a14ca589281
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3d49ab4a64f72be38c3c1d105b56e2292936305b
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3d49ab4a64f72be38c3c1d105b56e2292936305b
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3dfbc92965a5a5fe0c20308684e1d27e3f34f4b4
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/3dfbc92965a5a5fe0c20308684e1d27e3f34f4b4
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/41a1afd651fcfdbdceaa491f42b579a270c0600c
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/41a1afd651fcfdbdceaa491f42b579a270c0600c
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4295951b7a58bf054d18afa74038f1786d41f52b
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4295951b7a58bf054d18afa74038f1786d41f52b
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/432d6981ad61bce4fb359574dbdc8dc35b68492c
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/432d6981ad61bce4fb359574dbdc8dc35b68492c
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/439e9032e5918424adef3d82f63534b5a890838b
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/439e9032e5918424adef3d82f63534b5a890838b
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/43a7327d5ce619cfe06240ee11f17ade17aa098a
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/43a7327d5ce619cfe06240ee11f17ade17aa098a
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4447e51bae829670c5db1d6e8d38f2cd56794d56
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4447e51bae829670c5db1d6e8d38f2cd56794d56
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/44d48a128ad252c4388289b2a018e19c6ced3e63
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/44d48a128ad252c4388289b2a018e19c6ced3e63
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/462b5c989510f46e2deace0d8853e8c6980f83fd
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/462b5c989510f46e2deace0d8853e8c6980f83fd
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/469640623502238c4d83b76618761b7d03ba98d6
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/469640623502238c4d83b76618761b7d03ba98d6
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4750e984d7ad7e07c026c711a85db890d57f48b9
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4750e984d7ad7e07c026c711a85db890d57f48b9
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/47523143b60a538aa2a6782858b1292d1611863a
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/47523143b60a538aa2a6782858b1292d1611863a
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/477a7322f6ba9b5ec554f1980c2e1404355715fc
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/477a7322f6ba9b5ec554f1980c2e1404355715fc
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/47ab5a4f263f418d2bc04db4e72b2d7b528a4f1a
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/47ab5a4f263f418d2bc04db4e72b2d7b528a4f1a
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/48c2a8e0af0aa406f6b598a59412f550c713a757
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/48c2a8e0af0aa406f6b598a59412f550c713a757
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4a0ea158bbc6ffc29b9ae9c932d6ffea943a97b2
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4a0ea158bbc6ffc29b9ae9c932d6ffea943a97b2
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4a77f7c11fb07c05a41beef303fcda341eb3a376
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4a77f7c11fb07c05a41beef303fcda341eb3a376
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4bf9a9ed7ab9891b87cc400243f809591df92635
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4bf9a9ed7ab9891b87cc400243f809591df92635
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4dfc8d27e042eb037da32c0c930407e34794933b
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4dfc8d27e042eb037da32c0c930407e34794933b
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4e792f9af432980bd3f1e8ed7bf29aa61b0707f0
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4e792f9af432980bd3f1e8ed7bf29aa61b0707f0
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4eb08a35c683eb1926c276b3bf1cc640663e89cb
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4eb08a35c683eb1926c276b3bf1cc640663e89cb
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4f5e5e2fb2783509df3bb5c55ee60ecc6ffd646e
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4f5e5e2fb2783509df3bb5c55ee60ecc6ffd646e
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4fde5aa7fd2a263c4d1d75473071646b8516359a
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4fde5aa7fd2a263c4d1d75473071646b8516359a
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4fe78bf9e79f13dcec93ec357ecb15676723091f
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/4fe78bf9e79f13dcec93ec357ecb15676723091f
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5114a06ff9e8f9286fd17ae3f771d560aec03582
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5114a06ff9e8f9286fd17ae3f771d560aec03582
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/51d5179b588715f066a97bcb06581ab64d832fae
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/51d5179b588715f066a97bcb06581ab64d832fae
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5231d5c47eea5045b085de52d35fe5b2588db646
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5231d5c47eea5045b085de52d35fe5b2588db646
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5429a04397fd3891c7253759ffb8283b979c4a6f
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5429a04397fd3891c7253759ffb8283b979c4a6f
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5478131fe7931f4f1fdb85d5a250bd7f3cb8a1ae
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5478131fe7931f4f1fdb85d5a250bd7f3cb8a1ae
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/54b7895bc5265b39f5c3b8707515fe07f790f87b
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/54b7895bc5265b39f5c3b8707515fe07f790f87b
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/55a137ab84d7366c62a7721fbd25be68125cb23a
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/55a137ab84d7366c62a7721fbd25be68125cb23a
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/562195f71ede55caa6c707ed705cf75c89f81ad5
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/562195f71ede55caa6c707ed705cf75c89f81ad5
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/56b712df0f218b7c277b12191eeef63624ca430a
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/56b712df0f218b7c277b12191eeef63624ca430a
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/56f07c657e9930389c7043bdda355c375a74667f
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/56f07c657e9930389c7043bdda355c375a74667f
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5755324627b17d56b17798f8e6fe1216c0dd6ec9
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5755324627b17d56b17798f8e6fe1216c0dd6ec9
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/577ec0d6b2844e88ec039a6a5fad308653d28cbb
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/577ec0d6b2844e88ec039a6a5fad308653d28cbb
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/57892d1c03701cbc711ce5999495ae77a03cb898
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/57892d1c03701cbc711ce5999495ae77a03cb898
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/586d50c6b4401087e26930803364839c683835e9
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/586d50c6b4401087e26930803364839c683835e9
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/59a30133dbabf9a476153661f90f72c1a396fe07
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/59a30133dbabf9a476153661f90f72c1a396fe07
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5a08b974861e69c9cafc696361a0793193baa793
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5a08b974861e69c9cafc696361a0793193baa793
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5a14e343a2779fd4a4c03bce5c517974d5ce7559
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5a14e343a2779fd4a4c03bce5c517974d5ce7559
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5d7fbe1808e20c8892bc99f0d85d0b3dc2064b24
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5d7fbe1808e20c8892bc99f0d85d0b3dc2064b24
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5dd5b3bcb247536b716c322f322e45664ad83dbd
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5dd5b3bcb247536b716c322f322e45664ad83dbd
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5de37c0360fab69623ed100a7bbdaf5ca29e6a72
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5de37c0360fab69623ed100a7bbdaf5ca29e6a72
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5e582f363da62392d4fa4063b8ec6e5d955b029c
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5e582f363da62392d4fa4063b8ec6e5d955b029c
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5ff15e8b667c7d0e4016db87aba13d5fe061be79
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/5ff15e8b667c7d0e4016db87aba13d5fe061be79
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/60431ea72124eb70526b6b5547d7353df1e93abd
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/60431ea72124eb70526b6b5547d7353df1e93abd
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/608725f3c66e538eb58f927bf55b48b822b41ad1
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/608725f3c66e538eb58f927bf55b48b822b41ad1
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/608ff7628ec552218ecaf297117b72902f249dfc
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/608ff7628ec552218ecaf297117b72902f249dfc
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6113ca70656b722bae29103c64c4b854ddcc275e
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6113ca70656b722bae29103c64c4b854ddcc275e
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/61a1d37ca8161caf669f038dff1ddb3f78c12635
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/61a1d37ca8161caf669f038dff1ddb3f78c12635
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/61c8575f6c12c547440ed55e194ba9b7cdcb2d03
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/61c8575f6c12c547440ed55e194ba9b7cdcb2d03
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/61f563324bf2de44c57cf6e57a5d09b1d9df9f53
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/61f563324bf2de44c57cf6e57a5d09b1d9df9f53
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/61fde245cd1287f99e775043ab242e798ae0188a
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/61fde245cd1287f99e775043ab242e798ae0188a
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/621102a26d5d43abebda91fe04d3abaf10e88162
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/621102a26d5d43abebda91fe04d3abaf10e88162
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/62407e3d6151210e24a195688e69ab3d6c10c3e0
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/62407e3d6151210e24a195688e69ab3d6c10c3e0
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6248b9f244456c9102e4557e542b5abe9665fafd
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6248b9f244456c9102e4557e542b5abe9665fafd
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/63d1c43691eaeb2294ff45619d9970799b65ac93
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/63d1c43691eaeb2294ff45619d9970799b65ac93
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6470c8114a5b1104a9e233521c8fc460f6f26221
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6470c8114a5b1104a9e233521c8fc460f6f26221
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/64f0b3b8af6420ed40d347685837cc46dad24abc
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/64f0b3b8af6420ed40d347685837cc46dad24abc
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/650a95d2d935c12b54c2b32ed991f0250e45929b
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/650a95d2d935c12b54c2b32ed991f0250e45929b
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/650b2d0c5ecab3504d9da9143a174655c5a52b5f
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/650b2d0c5ecab3504d9da9143a174655c5a52b5f
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/655f2b71ddfafbcbd5af517f02eb9386a2a7a2a1
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/655f2b71ddfafbcbd5af517f02eb9386a2a7a2a1
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/66c3fdea105764aece623b6b92d5fc669a6250f1
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/66c3fdea105764aece623b6b92d5fc669a6250f1
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/67f1cab05a097aa16b03636e0d8d6b6d68400f45
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/67f1cab05a097aa16b03636e0d8d6b6d68400f45
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/684800f0ec5c515afab6535cd111d7980e177d5b
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/684800f0ec5c515afab6535cd111d7980e177d5b
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/68aeadbc6236e7e8db2b07c058a07e1511868e13
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/68aeadbc6236e7e8db2b07c058a07e1511868e13
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/69ea02e4bb7482efa2847d0c5de11ce5372875c5
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/69ea02e4bb7482efa2847d0c5de11ce5372875c5
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6b2d17fd62aa6cdfe8e657cfe388c48a4a2ec69c
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6b2d17fd62aa6cdfe8e657cfe388c48a4a2ec69c
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6b3489047e8e60bdbe3c2903aa804c42528aac9d
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6b3489047e8e60bdbe3c2903aa804c42528aac9d
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6beae2fffca3ca082d88d7419f199855a0dd52c0
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6beae2fffca3ca082d88d7419f199855a0dd52c0
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6c72a329420dcbab1ba4d0b30421f7ec2e5b50c8
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6c72a329420dcbab1ba4d0b30421f7ec2e5b50c8
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6cc0805270076805fbc8af417f4192f2e93df6a8
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6cc0805270076805fbc8af417f4192f2e93df6a8
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6cfe5815acf90f1e5fc61143b3b5f9186aa129f2
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6cfe5815acf90f1e5fc61143b3b5f9186aa129f2
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6dc1f10a86b75ebd8349bc390e9db344d8c838f9
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6dc1f10a86b75ebd8349bc390e9db344d8c838f9
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6de9a69b595939e0daa0837700261b529e6deb4d
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6de9a69b595939e0daa0837700261b529e6deb4d
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6e1c3bd7857aa0e58967e11477802703e485cea0
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6e1c3bd7857aa0e58967e11477802703e485cea0
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6e512517b2f7c170db43ec73e8cd65272ca6b303
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6e512517b2f7c170db43ec73e8cd65272ca6b303
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6ebe0ba2cda84fde40327fcf0b1d04a1d450443c
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6ebe0ba2cda84fde40327fcf0b1d04a1d450443c
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6ec08e7d3a33e53553b3dc2f64625c54a7b4df77
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6ec08e7d3a33e53553b3dc2f64625c54a7b4df77
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6f7ab4c702de0271faee7c09dd9ab05dedd59064
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6f7ab4c702de0271faee7c09dd9ab05dedd59064
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6fba4fc5d03d0cfcd8c00038239012e4c62bc2e5
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/6fba4fc5d03d0cfcd8c00038239012e4c62bc2e5
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/706e9df9856b4e7f51c1f78f6d9ec6a2a8f952d5
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/706e9df9856b4e7f51c1f78f6d9ec6a2a8f952d5
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/70c542cef50370aefacb7f5a2d4be913f044c7b9
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/70c542cef50370aefacb7f5a2d4be913f044c7b9
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/71bc6892b1837c6156a1c5d35a7f95959dfe832f
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/71bc6892b1837c6156a1c5d35a7f95959dfe832f
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/72de2c55692f186bace009ffe51259162ad615c8
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/72de2c55692f186bace009ffe51259162ad615c8
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7376776c990f6c17bc9627fed3b87b8aa083d1f0
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7376776c990f6c17bc9627fed3b87b8aa083d1f0
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/746cdb47892ef0853f793e3d88793a855c889589
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/746cdb47892ef0853f793e3d88793a855c889589
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/74b17d594bb292bf013c16ea8c0ff15b2ee8d2df
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/74b17d594bb292bf013c16ea8c0ff15b2ee8d2df
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/759a07c5720ea1b0882e41a78a9b811487343519
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/759a07c5720ea1b0882e41a78a9b811487343519
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/772d98356bb57421267b5798b74a81611a92e4d8
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/772d98356bb57421267b5798b74a81611a92e4d8
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7854eefc1e8f9c9b3190dffec519b30fbabb62db
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7854eefc1e8f9c9b3190dffec519b30fbabb62db
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/787639f774e12fcf3b9453ce378bd96096dce9d8
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/787639f774e12fcf3b9453ce378bd96096dce9d8
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/795eb61786f91761904a8141cebe14a93ca2f632
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/795eb61786f91761904a8141cebe14a93ca2f632
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7b887eb7ef48a6a1f7adbeb891f8e64102f1f341
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7b887eb7ef48a6a1f7adbeb891f8e64102f1f341
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7c32d759ea736111fa6ec21675c875bd4b65ca2d
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7c32d759ea736111fa6ec21675c875bd4b65ca2d
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7c80402bcbbcde5291a6e361e407e6e5c984a109
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7c80402bcbbcde5291a6e361e407e6e5c984a109
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7d476b7d5512af9fd79e3a759f87c4b05d877b31
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7d476b7d5512af9fd79e3a759f87c4b05d877b31
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7db9d2d9516ab96baa1f66577508de16d9594dce
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7db9d2d9516ab96baa1f66577508de16d9594dce
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7eb9ee437510fef048d9dd18c6857bb5357aa710
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7eb9ee437510fef048d9dd18c6857bb5357aa710
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7ef9ddeb1181ead4a348a42804a4739b8471e5cf
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7ef9ddeb1181ead4a348a42804a4739b8471e5cf
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7ff861b1408dab8e916e8fe210a73e354969ff8f
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/7ff861b1408dab8e916e8fe210a73e354969ff8f
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/80379e9b8a4a542874cae26ca7d4d5e5ab7b4852
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/80379e9b8a4a542874cae26ca7d4d5e5ab7b4852
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/81201574a61ef6f3598d27d5470ec6cce5b490be
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/81201574a61ef6f3598d27d5470ec6cce5b490be
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/81c907c0fd7e261fd7e003fe8a5e40208e533de5
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/81c907c0fd7e261fd7e003fe8a5e40208e533de5
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/861fccb7df0ba87e8ce97e1342ed527954e94250
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/861fccb7df0ba87e8ce97e1342ed527954e94250
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/864aca3ee717603bff3571958d3a5d2448e86b6c
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/864aca3ee717603bff3571958d3a5d2448e86b6c
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/8665961f12b7645f26f010ba56c50d1c07485e69
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/8665961f12b7645f26f010ba56c50d1c07485e69
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/87d4bf10da5314a5388172c93d2b8c87735cee4a
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/87d4bf10da5314a5388172c93d2b8c87735cee4a
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/87d861743fad374c66b72554c6b5ff0fd2692f9c
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/87d861743fad374c66b72554c6b5ff0fd2692f9c
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/885be6586cf00eacff38e505d70d80df9072f3cd
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/885be6586cf00eacff38e505d70d80df9072f3cd
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/8954abe3439d5011ac7771e5c9b3181a3688eea0
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/8954abe3439d5011ac7771e5c9b3181a3688eea0
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/89f6e44bd2b788994e19c4892247453a64e1004f
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/89f6e44bd2b788994e19c4892247453a64e1004f
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/8a9ea092b7e17a0e5ec32a82b49ea3a7a17f5444
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/8a9ea092b7e17a0e5ec32a82b49ea3a7a17f5444
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/8add428ed7a11ac7387514818af28ff67b6ba08c
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/8add428ed7a11ac7387514818af28ff67b6ba08c
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/8dc120d6e5095c392b8bbe65dd56104de6c6d90b
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/8dc120d6e5095c392b8bbe65dd56104de6c6d90b
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
soliton/fuzz/corpus/fuzz_argon2_params/8ea902b5bdac436e087a461218aeae2ad6e42829
(Stored with Git LFS)
Normal file
BIN
soliton/fuzz/corpus/fuzz_argon2_params/8ea902b5bdac436e087a461218aeae2ad6e42829
(Stored with Git LFS)
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue