Home
last modified time | relevance | path

Searched refs:CMSAttributes (Results 1 – 7 of 7) sorted by relevance

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
DDefaultSignedAttributeTableGenerator.java14 import org.bouncycastle.asn1.cms.CMSAttributes;
67 if (!std.containsKey(CMSAttributes.contentType)) in createStandardAttributeTable()
75 Attribute attr = new Attribute(CMSAttributes.contentType, in createStandardAttributeTable()
81 if (!std.containsKey(CMSAttributes.signingTime)) in createStandardAttributeTable()
84 Attribute attr = new Attribute(CMSAttributes.signingTime, in createStandardAttributeTable()
89 if (!std.containsKey(CMSAttributes.messageDigest)) in createStandardAttributeTable()
93 Attribute attr = new Attribute(CMSAttributes.messageDigest, in createStandardAttributeTable()
98 if (!std.contains(CMSAttributes.cmsAlgorithmProtect)) in createStandardAttributeTable()
100 …Attribute attr = new Attribute(CMSAttributes.cmsAlgorithmProtect, new DERSet(new CMSAlgorithmProte… in createStandardAttributeTable()
DSignerInformation.java22 import org.bouncycastle.asn1.cms.CMSAttributes;
293 … ASN1EncodableVector allCSAttrs = unsignedAttributeTable.getAll(CMSAttributes.counterSignature); in getCounterSignatures()
441 CMSAttributes.contentType, "content-type"); in doVerify()
475 …if (unsignedAttrTable != null && unsignedAttrTable.getAll(CMSAttributes.cmsAlgorithmProtect).size(… in doVerify()
481 …ASN1EncodableVector protectionAttributes = signedAttrTable.getAll(CMSAttributes.cmsAlgorithmProtec… in doVerify()
513 CMSAttributes.messageDigest, "message-digest"); in doVerify()
540 && signedAttrTable.getAll(CMSAttributes.counterSignature).size() > 0) in doVerify()
548 … ASN1EncodableVector csAttrs = unsignedAttrTable.getAll(CMSAttributes.counterSignature); in doVerify()
673 CMSAttributes.signingTime, "signing-time"); in getSigningTime()
751 v.add(new Attribute(CMSAttributes.counterSignature, new DERSet(sigs))); in addCounterSigners()
/external/python/asn1crypto/asn1crypto/
Dcms.py185 class CMSAttributes(SetOf): class
607 ('signed_attrs', CMSAttributes, {'implicit': 0, 'optional': True}),
610 ('unsigned_attrs', CMSAttributes, {'implicit': 1, 'optional': True}),
819 ('unprotected_attrs', CMSAttributes, {'implicit': 1, 'optional': True}),
866 ('unprotected_attrs', CMSAttributes, {'implicit': 1, 'optional': True}),
880 ('auth_attrs', CMSAttributes, {'implicit': 2, 'optional': True}),
882 ('unauth_attrs', CMSAttributes, {'implicit': 3, 'optional': True}),
892 ('auth_attrs', CMSAttributes, {'implicit': 1, 'optional': True}),
894 ('unauth_attrs', CMSAttributes, {'implicit': 2, 'optional': True}),
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
DCMSAttributes.java21 public interface CMSAttributes interface
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/cms/
DCMSAttributes.java23 public interface CMSAttributes interface
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/cms/
DCMSAttributes.java23 public interface CMSAttributes interface
/external/python/asn1crypto/
Dchangelog.md315 - Fixed `cms.CMSAttributes` to be a `core.SetOf` instead of `core.SequenceOf`