Home
last modified time | relevance | path

Searched refs:SignerInfo (Results 1 – 15 of 15) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
DSignerInfo.java75 public class SignerInfo class
99 public static SignerInfo getInstance( in getInstance()
103 if (o instanceof SignerInfo) in getInstance()
105 return (SignerInfo)o; in getInstance()
109 return new SignerInfo(ASN1Sequence.getInstance(o)); in getInstance()
124 public SignerInfo( in SignerInfo() method in SignerInfo
158 public SignerInfo( in SignerInfo() method in SignerInfo
186 public SignerInfo( in SignerInfo() method in SignerInfo
DSignedData.java207 SignerInfo s = SignerInfo.getInstance(e.nextElement()); in checkForVersion3()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/cms/
DSignerInfo.java77 public class SignerInfo class
101 public static SignerInfo getInstance( in getInstance()
105 if (o instanceof SignerInfo) in getInstance()
107 return (SignerInfo)o; in getInstance()
111 return new SignerInfo(ASN1Sequence.getInstance(o)); in getInstance()
126 public SignerInfo( in SignerInfo() method in SignerInfo
160 public SignerInfo( in SignerInfo() method in SignerInfo
188 public SignerInfo( in SignerInfo() method in SignerInfo
DSignedData.java209 SignerInfo s = SignerInfo.getInstance(e.nextElement()); in checkForVersion3()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/cms/
DSignerInfo.java77 public class SignerInfo class
101 public static SignerInfo getInstance( in getInstance()
105 if (o instanceof SignerInfo) in getInstance()
107 return (SignerInfo)o; in getInstance()
111 return new SignerInfo(ASN1Sequence.getInstance(o)); in getInstance()
126 public SignerInfo( in SignerInfo() method in SignerInfo
160 public SignerInfo( in SignerInfo() method in SignerInfo
188 public SignerInfo( in SignerInfo() method in SignerInfo
DSignedData.java209 SignerInfo s = SignerInfo.getInstance(e.nextElement()); in checkForVersion3()
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
DSignerInformation.java25 import org.bouncycastle.asn1.cms.SignerInfo;
53 protected final SignerInfo info;
60 SignerInfo info, in SignerInformation()
114 protected SignerInformation(SignerInformation baseInfo, SignerInfo info) in SignerInformation()
326 SignerInfo si = SignerInfo.getInstance(en.nextElement()); in getCounterSignatures()
624 public SignerInfo toASN1Structure() in toASN1Structure()
703 SignerInfo sInfo = signerInformation.info; in replaceUnsignedAttributes()
712 new SignerInfo(sInfo.getSID(), sInfo.getDigestAlgorithm(), in replaceUnsignedAttributes()
731 SignerInfo sInfo = signerInformation.info; in addCounterSigners()
754 new SignerInfo(sInfo.getSID(), sInfo.getDigestAlgorithm(), in addCounterSigners()
DSignerInfoGenerator.java16 import org.bouncycastle.asn1.cms.SignerInfo;
172 public SignerInfo generate(ASN1ObjectIdentifier contentType) in generate()
248 return new SignerInfo(signerIdentifier, digestAlg, in generate()
DCMSSignedDataGenerator.java19 import org.bouncycastle.asn1.cms.SignerInfo;
177 SignerInfo inf = sGen.generate(contentTypeOID); in generate()
DCMSSignedData.java28 import org.bouncycastle.asn1.cms.SignerInfo;
252 SignerInfo info = SignerInfo.getInstance(s.getObjectAt(i)); in getSignerInfos()
/external/python/pyasn1-modules/pyasn1_modules/
Drfc3852.py560 class SignerInfo(univ.Sequence): class
564 SignerInfo.componentType = namedtype.NamedTypes(
581 SignerInfos.componentType = SignerInfo()
678 class Countersignature(SignerInfo):
Drfc5652.py576 class SignerInfo(univ.Sequence): class
580 SignerInfo.componentType = namedtype.NamedTypes(
597 SignerInfos.componentType = SignerInfo()
600 class Countersignature(SignerInfo):
Drfc2315.py222 class SignerInfo(univ.Sequence): class
237 componentType = SignerInfo()
Drfc2985.py71 SignerInfo = rfc5652.SignerInfo variable
/external/python/asn1crypto/asn1crypto/
Dcms.py602 class SignerInfo(Sequence): class
615 _child_spec = SignerInfo