示例#1
0
文件: cert.py 项目: gta-ufrj/catraca
 def sign(self, data, h=None, t=None, mgf=None, sLen=None):
     return _DecryptAndSignRSA.sign(self,
                                    data,
                                    h=h,
                                    t=t,
                                    mgf=mgf,
                                    sLen=sLen)
示例#2
0
 def sign(self,
          data,
          h=None,
          t=None,
          mgf=None,
          sLen=None,
          k=None,
          entropy=None,
          sigencode=None):
     return _DecryptAndSignRSA.sign(self,
                                    data,
                                    h=h,
                                    t=t,
                                    mgf=mgf,
                                    sLen=sLen)
示例#3
0
文件: cert.py 项目: qbsonn/scapy
 def sign(self, data, t="pkcs", h="sha256", mgf=None, L=None):
     return _DecryptAndSignRSA.sign(self, data, t, h, mgf, L)
示例#4
0
文件: cert.py 项目: 6WIND/scapy
 def sign(self, data, t="pkcs", h="sha256", mgf=None, L=None):
     return _DecryptAndSignRSA.sign(self, data, t, h, mgf, L)
示例#5
0
文件: cert.py 项目: NamiStudio/scapy
 def sign(self, data, h=None,
          t=None, mgf=None, sLen=None,
          k=None, entropy=None, sigencode=None):
     return _DecryptAndSignRSA.sign(self, data, h=h,
                                    t=t, mgf=mgf, sLen=sLen)
示例#6
0
 def sign(self, data, h=None,
          t=None, mgf=None, sLen=None):
     return _DecryptAndSignRSA.sign(self, data, h=h,
                                    t=t, mgf=mgf, sLen=sLen)