Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

secp192r1 certificates can not be loaded any more #143

Merged
merged 1 commit into from
Nov 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tls/test_tls_cert.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def setUp(self):
self.cgen = CertGenerator()
self.cgen.key = {
'alg': 'ecdsa',
'curve': ec.SECP192R1() # Unsupported curve
'curve': ec.SECP192R1() # Deprecated curve, RFC 8422 5.1.1
}
self.cgen.sign_alg = 'sha256'
self.cgen.generate()
Expand All @@ -215,7 +215,8 @@ def setUp(self):
tester.TempestaTest.setUp(self)

def test(self):
self.check_bad_alg("Warning: None of the common ciphersuites is usable")
self.check_cannot_start("ERROR: tls_certificate: "
+ "Invalid certificate specified")


class ECDSA_SHA256_SECP256(X509):
Expand Down