Fix _validate_csr_subject and _validate_csr_signature (#62790)
On python 3, if there is no explicit "return True", the function call will be seen as "False", thus failling the module
This commit is contained in:
parent
fd627e3b78
commit
75c4e9ec05
2 changed files with 4 additions and 4 deletions
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- "openssl_certificate - fix ``assertonly`` provider certificate verification, causing 'private key mismatch' and 'subject mismatch' errors."
|
|
@ -1861,12 +1861,10 @@ class AssertOnlyCertificateCryptography(AssertOnlyCertificateBase):
|
|||
def _validate_csr_signature(self):
|
||||
if not self.csr.is_signature_valid:
|
||||
return False
|
||||
if self.csr.public_key().public_numbers() != self.cert.public_key().public_numbers():
|
||||
return False
|
||||
return self.csr.public_key().public_numbers() == self.cert.public_key().public_numbers()
|
||||
|
||||
def _validate_csr_subject(self):
|
||||
if self.csr.subject != self.cert.subject:
|
||||
return False
|
||||
return self.csr.subject == self.cert.subject
|
||||
|
||||
def _validate_csr_extensions(self):
|
||||
cert_exts = self.cert.extensions
|
||||
|
|
Loading…
Reference in a new issue