-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jakub Jelen <[email protected]>
- Loading branch information
Showing
7 changed files
with
54 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,8 @@ Files: .github/* | |
tests/cert.json.in | ||
tests/cert.json.rsa.in | ||
tests/cert.json.ecdsa.in | ||
tests/cert.json.eddsa.in | ||
tests/cert.json.ed25519.in | ||
tests/cert.json.ed448.in | ||
scripts/clean-dist.sh | ||
Copyright: (C) 2022 - 2024 Simo Sorce <[email protected]> | ||
License: Apache-2.0 | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
, | ||
{"server_command": [@CHECKER@"openssl", "s_server", @PROPQ@"-www", "-port", "@PORT@", "-key", "@PRIURI@", "-cert", "@CRTURI@"], | ||
"comment": "Run test with @PRIURI@ without certificate verify", | ||
"environment": {"PYTHONPATH" : "."}, | ||
"server_hostname": "localhost", | ||
"server_port": @PORT@, | ||
"common_arguments": ["-p", "@PORT@"], | ||
"tests" : [ | ||
{"name" : "test-tls13-conversation.py"}, | ||
{"name" : "test-conversation.py", | ||
"arguments" : ["-d"]}, | ||
{"name" : "test-signature-algorithms.py", | ||
"arguments" : [ | ||
"--ecdsa", "-x", "implicit SHA-1 check", | ||
"-X", "handshake_failure", "sanity", "implicit SHA-1 check" | ||
], | ||
"comment": "SHA-1 is disabled by crypto policies." | ||
}, | ||
{"name" : "test-tls13-eddsa.py", | ||
"arguments" : ["-x", "ed25519 only", "-X", "handshake_failure"], | ||
"comment": "We have only ed448 key." | ||
} | ||
] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters