Home
last modified time | relevance | path

Searched refs:AttributeTypeAndValue (Results 1 – 22 of 22) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
DRDN.java55 public RDN(AttributeTypeAndValue attrTAndV) in RDN()
65 public RDN(AttributeTypeAndValue[] aAndVs) in RDN()
85 public AttributeTypeAndValue getFirst() in getFirst()
92 return AttributeTypeAndValue.getInstance(this.values.getObjectAt(0)); in getFirst()
95 public AttributeTypeAndValue[] getTypesAndValues() in getTypesAndValues()
97 AttributeTypeAndValue[] tmp = new AttributeTypeAndValue[values.size()]; in getTypesAndValues()
101 tmp[i] = AttributeTypeAndValue.getInstance(values.getObjectAt(i)); in getTypesAndValues()
112 AttributeTypeAndValue attr = AttributeTypeAndValue.getInstance(values.getObjectAt(i)); in collectAttributeTypes()
123 AttributeTypeAndValue attr = AttributeTypeAndValue.getInstance(values.getObjectAt(i)); in containsAttributeType()
DAttributeTypeAndValue.java14 public class AttributeTypeAndValue class
20 private AttributeTypeAndValue(ASN1Sequence seq) in AttributeTypeAndValue() method in AttributeTypeAndValue
26 public static AttributeTypeAndValue getInstance(Object o) in getInstance()
28 if (o instanceof AttributeTypeAndValue) in getInstance()
30 return (AttributeTypeAndValue)o; in getInstance()
34 return new AttributeTypeAndValue(ASN1Sequence.getInstance(o)); in getInstance()
40 public AttributeTypeAndValue( in AttributeTypeAndValue() method in AttributeTypeAndValue
DX500NameBuilder.java69 public X500NameBuilder addRDN(AttributeTypeAndValue attrTAndV) in addRDN()
104 AttributeTypeAndValue[] avs = new AttributeTypeAndValue[oids.length]; in addMultiValuedRDN()
108 avs[i] = new AttributeTypeAndValue(oids[i], values[i]); in addMultiValuedRDN()
120 public X500NameBuilder addMultiValuedRDN(AttributeTypeAndValue[] attrTAndVs) in addMultiValuedRDN()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x500/
DRDN.java57 public RDN(AttributeTypeAndValue attrTAndV) in RDN()
67 public RDN(AttributeTypeAndValue[] aAndVs) in RDN()
87 public AttributeTypeAndValue getFirst() in getFirst()
94 return AttributeTypeAndValue.getInstance(this.values.getObjectAt(0)); in getFirst()
97 public AttributeTypeAndValue[] getTypesAndValues() in getTypesAndValues()
99 AttributeTypeAndValue[] tmp = new AttributeTypeAndValue[values.size()]; in getTypesAndValues()
103 tmp[i] = AttributeTypeAndValue.getInstance(values.getObjectAt(i)); in getTypesAndValues()
114 AttributeTypeAndValue attr = AttributeTypeAndValue.getInstance(values.getObjectAt(i)); in collectAttributeTypes()
125 AttributeTypeAndValue attr = AttributeTypeAndValue.getInstance(values.getObjectAt(i)); in containsAttributeType()
DAttributeTypeAndValue.java16 public class AttributeTypeAndValue class
22 private AttributeTypeAndValue(ASN1Sequence seq) in AttributeTypeAndValue() method in AttributeTypeAndValue
28 public static AttributeTypeAndValue getInstance(Object o) in getInstance()
30 if (o instanceof AttributeTypeAndValue) in getInstance()
32 return (AttributeTypeAndValue)o; in getInstance()
36 return new AttributeTypeAndValue(ASN1Sequence.getInstance(o)); in getInstance()
42 public AttributeTypeAndValue( in AttributeTypeAndValue() method in AttributeTypeAndValue
DX500NameBuilder.java71 public X500NameBuilder addRDN(AttributeTypeAndValue attrTAndV) in addRDN()
106 AttributeTypeAndValue[] avs = new AttributeTypeAndValue[oids.length]; in addMultiValuedRDN()
110 avs[i] = new AttributeTypeAndValue(oids[i], values[i]); in addMultiValuedRDN()
122 public X500NameBuilder addMultiValuedRDN(AttributeTypeAndValue[] attrTAndVs) in addMultiValuedRDN()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/x500/
DRDN.java57 public RDN(AttributeTypeAndValue attrTAndV) in RDN()
67 public RDN(AttributeTypeAndValue[] aAndVs) in RDN()
87 public AttributeTypeAndValue getFirst() in getFirst()
94 return AttributeTypeAndValue.getInstance(this.values.getObjectAt(0)); in getFirst()
97 public AttributeTypeAndValue[] getTypesAndValues() in getTypesAndValues()
99 AttributeTypeAndValue[] tmp = new AttributeTypeAndValue[values.size()]; in getTypesAndValues()
103 tmp[i] = AttributeTypeAndValue.getInstance(values.getObjectAt(i)); in getTypesAndValues()
114 AttributeTypeAndValue attr = AttributeTypeAndValue.getInstance(values.getObjectAt(i)); in collectAttributeTypes()
125 AttributeTypeAndValue attr = AttributeTypeAndValue.getInstance(values.getObjectAt(i)); in containsAttributeType()
DAttributeTypeAndValue.java16 public class AttributeTypeAndValue class
22 private AttributeTypeAndValue(ASN1Sequence seq) in AttributeTypeAndValue() method in AttributeTypeAndValue
28 public static AttributeTypeAndValue getInstance(Object o) in getInstance()
30 if (o instanceof AttributeTypeAndValue) in getInstance()
32 return (AttributeTypeAndValue)o; in getInstance()
36 return new AttributeTypeAndValue(ASN1Sequence.getInstance(o)); in getInstance()
42 public AttributeTypeAndValue( in AttributeTypeAndValue() method in AttributeTypeAndValue
DX500NameBuilder.java71 public X500NameBuilder addRDN(AttributeTypeAndValue attrTAndV) in addRDN()
106 AttributeTypeAndValue[] avs = new AttributeTypeAndValue[oids.length]; in addMultiValuedRDN()
110 avs[i] = new AttributeTypeAndValue(oids[i], values[i]); in addMultiValuedRDN()
122 public X500NameBuilder addMultiValuedRDN(AttributeTypeAndValue[] attrTAndVs) in addMultiValuedRDN()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x500/style/
DIETFUtils.java15 import com.android.org.bouncycastle.asn1.x500.AttributeTypeAndValue;
310 AttributeTypeAndValue[] atv = rdn.getTypesAndValues(); in appendRDN()
338 AttributeTypeAndValue typeAndValue, in appendTypeAndValue()
528 AttributeTypeAndValue[] atvs1 = rdn1.getTypesAndValues(); in rDNAreEqual()
529 AttributeTypeAndValue[] atvs2 = rdn2.getTypesAndValues(); in rDNAreEqual()
547 private static boolean atvAreEqual(AttributeTypeAndValue atv1, AttributeTypeAndValue atv2) in atvAreEqual()
DAbstractX500NameStyle.java12 import com.android.org.bouncycastle.asn1.x500.AttributeTypeAndValue;
63 AttributeTypeAndValue[] atv = rdns[i].getTypesAndValues(); in calculateHashCode()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
DIETFUtils.java14 import org.bouncycastle.asn1.x500.AttributeTypeAndValue;
306 AttributeTypeAndValue[] atv = rdn.getTypesAndValues(); in appendRDN()
334 AttributeTypeAndValue typeAndValue, in appendTypeAndValue()
524 AttributeTypeAndValue[] atvs1 = rdn1.getTypesAndValues(); in rDNAreEqual()
525 AttributeTypeAndValue[] atvs2 = rdn2.getTypesAndValues(); in rDNAreEqual()
543 private static boolean atvAreEqual(AttributeTypeAndValue atv1, AttributeTypeAndValue atv2) in atvAreEqual()
DAbstractX500NameStyle.java11 import org.bouncycastle.asn1.x500.AttributeTypeAndValue;
61 AttributeTypeAndValue[] atv = rdns[i].getTypesAndValues(); in calculateHashCode()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/x500/style/
DIETFUtils.java15 import com.android.internal.org.bouncycastle.asn1.x500.AttributeTypeAndValue;
310 AttributeTypeAndValue[] atv = rdn.getTypesAndValues(); in appendRDN()
338 AttributeTypeAndValue typeAndValue, in appendTypeAndValue()
528 AttributeTypeAndValue[] atvs1 = rdn1.getTypesAndValues(); in rDNAreEqual()
529 AttributeTypeAndValue[] atvs2 = rdn2.getTypesAndValues(); in rDNAreEqual()
547 private static boolean atvAreEqual(AttributeTypeAndValue atv1, AttributeTypeAndValue atv2) in atvAreEqual()
DAbstractX500NameStyle.java12 import com.android.internal.org.bouncycastle.asn1.x500.AttributeTypeAndValue;
63 AttributeTypeAndValue[] atv = rdns[i].getTypesAndValues(); in calculateHashCode()
/external/python/pyasn1-modules/pyasn1_modules/
Drfc2986.py30 AttributeTypeAndValue = rfc5280.AttributeTypeAndValue variable
Drfc4211.py196 class AttributeTypeAndValue(univ.Sequence): class
200 AttributeTypeAndValue.componentType = namedtype.NamedTypes(
284 Controls.componentType = AttributeTypeAndValue()
306 namedtype.OptionalNamedType('regInfo', univ.SequenceOf(componentType=AttributeTypeAndValue()))
Drfc2511.py197 componentType = AttributeTypeAndValue()
251 …namedtype.OptionalNamedType('regInfo', univ.SequenceOf(componentType=AttributeTypeAndValue()).subt…
Drfc3280.py207 class AttributeTypeAndValue(univ.Sequence): class
211 AttributeTypeAndValue.componentType = namedtype.NamedTypes(
221 RelativeDistinguishedName.componentType = AttributeTypeAndValue()
Drfc5280.py315 class AttributeTypeAndValue(univ.Sequence): class
329 RelativeDistinguishedName.componentType = AttributeTypeAndValue()
Drfc2459.py1013 class AttributeTypeAndValue(univ.Sequence): class
1034 componentType = AttributeTypeAndValue()
/external/boringssl/src/crypto/x509/test/
Dmake_many_constraints.go161 …afTemplate.Subject.ExtraNames = append(leafTemplate.Subject.ExtraNames, pkix.AttributeTypeAndValue{