Return the hash cryptography object used by the 'signatureAlgorithm'
(self)
| 1030 | return self.pubkey.verify(msg, sig, t=t, h=h, mgf=mgf, L=L) |
| 1031 | |
| 1032 | def getSignatureHash(self): |
| 1033 | """ |
| 1034 | Return the hash cryptography object used by the 'signatureAlgorithm' |
| 1035 | """ |
| 1036 | return _get_hash(_get_cert_sig_hashname(self)) |
| 1037 | |
| 1038 | def setSubjectPublicKeyFromPrivateKey(self, key): |
| 1039 | """ |
no test coverage detected