Home
last modified time | relevance | path

Searched refs:AttributeTypeAndValue (Results 1 – 18 of 18) 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()
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()
DX500Name.java192 AttributeTypeAndValue[] attr = rdn.getTypesAndValues(); in getAttributeTypes()
224 AttributeTypeAndValue[] attr = rdn.getTypesAndValues(); in getRDNs()
/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()
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()
DX500Name.java194 AttributeTypeAndValue[] attr = rdn.getTypesAndValues(); in getAttributeTypes()
226 AttributeTypeAndValue[] attr = rdn.getTypesAndValues(); in getRDNs()
/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()
560 private static boolean atvAreEqual(AttributeTypeAndValue atv1, AttributeTypeAndValue atv2) in atvAreEqual()
DAbstractX500NameStyle.java11 import org.bouncycastle.asn1.x500.AttributeTypeAndValue;
62 AttributeTypeAndValue[] atv = rdns[i].getTypesAndValues(); in calculateHashCode()
/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()
564 private static boolean atvAreEqual(AttributeTypeAndValue atv1, AttributeTypeAndValue atv2) in atvAreEqual()
DAbstractX500NameStyle.java12 import com.android.org.bouncycastle.asn1.x500.AttributeTypeAndValue;
64 AttributeTypeAndValue[] atv = rdns[i].getTypesAndValues(); in calculateHashCode()
/external/python/pyasn1-modules/pyasn1_modules/
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.py307 class AttributeTypeAndValue(univ.Sequence): class
321 RelativeDistinguishedName.componentType = AttributeTypeAndValue()
Drfc2459.py1010 class AttributeTypeAndValue(univ.Sequence): class
1031 componentType = AttributeTypeAndValue()
/external/boringssl/src/crypto/x509/
Dmake_many_constraints.go161 …afTemplate.Subject.ExtraNames = append(leafTemplate.Subject.ExtraNames, pkix.AttributeTypeAndValue{