Ejemplo n.º 1
0
Archivo: cert.py Proyecto: qbsonn/scapy
 def encrypt(self, msg, t="pkcs", h="sha256", mgf=None, L=None):
     # no ECDSA encryption support, hence no ECDSA specific keywords here
     return _EncryptAndVerifyRSA.encrypt(self, msg, t, h, mgf, L)
Ejemplo n.º 2
0
Archivo: cert.py Proyecto: 6WIND/scapy
 def encrypt(self, msg, t="pkcs", h="sha256", mgf=None, L=None):
     # no ECDSA encryption support, hence no ECDSA specific keywords here
     return _EncryptAndVerifyRSA.encrypt(self, msg, t, h, mgf, L)
Ejemplo n.º 3
0
 def encrypt(self, msg, t=None, h=None, mgf=None, L=None):
     # no ECDSA encryption support, hence no ECDSA specific keywords here
     return _EncryptAndVerifyRSA.encrypt(self, msg, t=t, h=h, mgf=mgf, L=L)
Ejemplo n.º 4
0
 def encrypt(self, msg, t=None, h=None, mgf=None, L=None):
     # no ECDSA encryption support, hence no ECDSA specific keywords here
     return _EncryptAndVerifyRSA.encrypt(self, msg, t=t, h=h, mgf=mgf, L=L)