예제 #1
0
파일: cert.py 프로젝트: 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)
예제 #2
0
파일: cert.py 프로젝트: 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)
예제 #3
0
파일: cert.py 프로젝트: gta-ufrj/catraca
 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)
예제 #4
0
파일: cert.py 프로젝트: NamiStudio/scapy
 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)