]> git.codecow.com Git - Monocypher.git/commit
Add tinyssh speed tests
authorLoup Vaillant <loup@loup-vaillant.fr>
Sun, 19 Mar 2023 21:54:48 +0000 (22:54 +0100)
committerLoup Vaillant <loup@loup-vaillant.fr>
Sun, 19 Mar 2023 21:56:15 +0000 (22:56 +0100)
commitea79193643274dbf75c09ca8ec2d60231d0d21b3
tree9ce8cd61483c0791996c26a74fb85af4af93ff53
parent497335709d689d42c3f078b1d2f99043f3325e62
Add tinyssh speed tests
36 files changed:
tests/externals/tinyssh/LICENCE [new file with mode: 0644]
tests/externals/tinyssh/cleanup.c [new file with mode: 0644]
tests/externals/tinyssh/cleanup.h [new file with mode: 0644]
tests/externals/tinyssh/crypto_hash_sha512.c [new file with mode: 0644]
tests/externals/tinyssh/crypto_hash_sha512.h [new file with mode: 0644]
tests/externals/tinyssh/crypto_int64.h [new file with mode: 0644]
tests/externals/tinyssh/crypto_onetimeauth_poly1305.c [new file with mode: 0644]
tests/externals/tinyssh/crypto_onetimeauth_poly1305.h [new file with mode: 0644]
tests/externals/tinyssh/crypto_scalarmult_curve25519.c [new file with mode: 0644]
tests/externals/tinyssh/crypto_scalarmult_curve25519.h [new file with mode: 0644]
tests/externals/tinyssh/crypto_sign_ed25519.c [new file with mode: 0644]
tests/externals/tinyssh/crypto_sign_ed25519.h [new file with mode: 0644]
tests/externals/tinyssh/crypto_stream_chacha20.c [new file with mode: 0644]
tests/externals/tinyssh/crypto_stream_chacha20.h [new file with mode: 0644]
tests/externals/tinyssh/crypto_uint32.h [new file with mode: 0644]
tests/externals/tinyssh/crypto_uint64.h [new file with mode: 0644]
tests/externals/tinyssh/crypto_verify_32.c [new file with mode: 0644]
tests/externals/tinyssh/crypto_verify_32.h [new file with mode: 0644]
tests/externals/tinyssh/fe.c [new file with mode: 0644]
tests/externals/tinyssh/fe.h [new file with mode: 0644]
tests/externals/tinyssh/fe25519.c [new file with mode: 0644]
tests/externals/tinyssh/fe25519.h [new file with mode: 0644]
tests/externals/tinyssh/ge25519.c [new file with mode: 0644]
tests/externals/tinyssh/ge25519.h [new file with mode: 0644]
tests/externals/tinyssh/randombytes.c [new file with mode: 0644]
tests/externals/tinyssh/randombytes.h [new file with mode: 0644]
tests/externals/tinyssh/sc25519.c [new file with mode: 0644]
tests/externals/tinyssh/sc25519.h [new file with mode: 0644]
tests/externals/tinyssh/uint32_pack.c [new file with mode: 0644]
tests/externals/tinyssh/uint32_pack.h [new file with mode: 0644]
tests/externals/tinyssh/uint32_unpack.c [new file with mode: 0644]
tests/externals/tinyssh/uint32_unpack.h [new file with mode: 0644]
tests/externals/tinyssh/verify.c [new file with mode: 0644]
tests/externals/tinyssh/verify.h [new file with mode: 0644]
tests/speed/makefile
tests/speed/speed-tinyssh.c [new file with mode: 0644]