Searched refs:pubExp (Results 1 – 1 of 1) sorted by relevance
/external/scapy/scapy/layers/tls/ |
D | cert.py | 258 def fill_and_store(self, modulus=None, modulusLen=None, pubExp=None): argument 259 pubExp = pubExp or 65537 262 private_key = rsa.generate_private_key(public_exponent=pubExp, 270 pubNum = rsa.RSAPublicNumbers(n=modulus, e=pubExp) 286 self.fill_and_store(modulus=m, pubExp=e) 294 pubExp = pubkey.publicExponent.val 295 self.fill_and_store(modulus=modulus, pubExp=pubExp) 448 def fill_and_store(self, modulus=None, modulusLen=None, pubExp=None, argument 451 pubExp = pubExp or 65537 458 self.key = rsa.generate_private_key(public_exponent=pubExp, [all …]
|