well, tests pass now
This commit is contained in:
113
tests/all_keys.toml
Normal file
113
tests/all_keys.toml
Normal file
@@ -0,0 +1,113 @@
|
||||
[runtime]
|
||||
worker_threads = 4
|
||||
blocking_threads = 8
|
||||
|
||||
[logging]
|
||||
level = "DEBUG"
|
||||
include_filename = true
|
||||
include_lineno = true
|
||||
include_thread_ids = true
|
||||
include_thread_names = true
|
||||
mode = "Compact"
|
||||
target = "stdout"
|
||||
|
||||
[keys]
|
||||
|
||||
[keys.ecdsa_clear1]
|
||||
public = "tests/ssh_keys/ecdsa1.pub"
|
||||
private = "tests/ssh_keys/ecdsa1"
|
||||
|
||||
[keys.ecdsa_clear2]
|
||||
public = "tests/ssh_keys/ecdsa2.pub"
|
||||
private = "tests/ssh_keys/ecdsa2"
|
||||
|
||||
[keys.ecdsa_big1]
|
||||
public = "tests/ssh_keys/ecdsa384a.pub"
|
||||
private = "tests/ssh_keys/ecdsa384a"
|
||||
|
||||
[keys.ecdsa_big2]
|
||||
public = "tests/ssh_keys/ecdsa384b.pub"
|
||||
private = "tests/ssh_keys/ecdsa384b"
|
||||
|
||||
[keys.ecdsa_biggest1]
|
||||
public = "tests/ssh_keys/ecdsa384a.pub"
|
||||
private = "tests/ssh_keys/ecdsa384a"
|
||||
|
||||
[keys.ecdsa_biggest2]
|
||||
public = "tests/ssh_keys/ecdsa521b.pub"
|
||||
private = "tests/ssh_keys/ecdsa521b"
|
||||
|
||||
[keys.ed25519_clear1]
|
||||
public = "tests/ssh_keys/ed25519a.pub"
|
||||
private = "tests/ssh_keys/ed25519a"
|
||||
|
||||
[keys.ed25519_clear2]
|
||||
public = "tests/ssh_keys/ed25519b.pub"
|
||||
private = "tests/ssh_keys/ed25519b"
|
||||
|
||||
[keys.ed25519_pass_here]
|
||||
public = "tests/ssh_keys/ed25519a.pub"
|
||||
private = "tests/ssh_keys/ed25519a"
|
||||
password = "hush"
|
||||
|
||||
[keys.ed25519_pass_on_load]
|
||||
public = "tests/ssh_keys/ed25519b.pub"
|
||||
private = "tests/ssh_keys/ed25519b"
|
||||
|
||||
[keys.rsa_reasonable1]
|
||||
public = "tests/ssh_keys/rsa4096a.pub"
|
||||
private = "tests/ssh_keys/rsa4096a"
|
||||
|
||||
[keys.rsa_reasonable2]
|
||||
public = "tests/ssh_keys/rsa4096b.pub"
|
||||
private = "tests/ssh_keys/rsa4096b"
|
||||
|
||||
[keys.rsa_big1]
|
||||
public = "tests/ssh_keys/rsa7680a.pub"
|
||||
private = "tests/ssh_keys/rsa7680a"
|
||||
|
||||
[keys.rsa_big2]
|
||||
public = "tests/ssh_keys/rsa7680b.pub"
|
||||
private = "tests/ssh_keys/rsa7680b"
|
||||
|
||||
[keys.rsa_extra1]
|
||||
public = "tests/ssh_keys/rsa8192a.pub"
|
||||
private = "tests/ssh_keys/rsa8192a"
|
||||
|
||||
[keys.rsa_extra2]
|
||||
public = "tests/ssh_keys/rsa8192b.pub"
|
||||
private = "tests/ssh_keys/rsa8192b"
|
||||
|
||||
[keys.rsa_crazy1]
|
||||
public = "tests/ssh_keys/rsa15360a.pub"
|
||||
private = "tests/ssh_keys/rsa15360a"
|
||||
|
||||
[keys.rsa_crazy2]
|
||||
public = "tests/ssh_keys/rsa15360b.pub"
|
||||
private = "tests/ssh_keys/rsa15360b"
|
||||
|
||||
[defaults]
|
||||
key_exchange_algorithms = [ "curve25519-sha256" ]
|
||||
server_host_algorithms = [ "ed25519" ]
|
||||
encryption_algorithms = [ "aes256-ctr", "aes256-gcm" ]
|
||||
mac_algorithms = [ "hmac-sha256" ]
|
||||
compression_algorithms = [ "zlib" ]
|
||||
predict = "curve25519-sha256"
|
||||
|
||||
[servers]
|
||||
|
||||
[servers.sea]
|
||||
host = "sea.uhsure.com"
|
||||
encryption_algorithms = ["aes256-gcm"]
|
||||
compression_algorithms = []
|
||||
|
||||
[servers.origin]
|
||||
host = "104.238.156.29"
|
||||
encryption_algorithms = ["aes256-ctr"]
|
||||
compression_algorithms = []
|
||||
|
||||
|
||||
[servers.origin6]
|
||||
host = "2001:19f0:8001:1e9b:5400:04ff:fe7e:055d"
|
||||
encryption_algorithms = ["aes256-ctr"]
|
||||
compression_algorithms = []
|
||||
Reference in New Issue
Block a user