HomeSort by relevance Sort by last modified time
    Searched refs:AttributeTypeAndValue (Results 1 - 19 of 19) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
AuthenticatedAttributes.java 27 import org.apache.harmony.security.x501.AttributeTypeAndValue;
36 private final List<AttributeTypeAndValue> authenticatedAttributes;
39 List<AttributeTypeAndValue> authenticatedAttributes) {
44 public List<AttributeTypeAndValue> getAttributes() {
59 new ASN1SetOf(AttributeTypeAndValue.ASN1) {
62 (List<AttributeTypeAndValue>) in.content);
SignerInfo.java 35 import org.apache.harmony.security.x501.AttributeTypeAndValue;
100 public List<AttributeTypeAndValue> getAuthenticatedAttributes() {
168 AttributeTypeAndValue.ASN1)),//unauthenticatedAttributes
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/
RDN.java 51 public RDN(AttributeTypeAndValue attrTAndV)
59 public RDN(AttributeTypeAndValue[] aAndVs)
69 public AttributeTypeAndValue getFirst()
76 return AttributeTypeAndValue.getInstance(this.values.getObjectAt(0));
79 public AttributeTypeAndValue[] getTypesAndValues()
81 AttributeTypeAndValue[] tmp = new AttributeTypeAndValue[values.size()];
85 tmp[i] = AttributeTypeAndValue.getInstance(values.getObjectAt(i));
94 * SET OF AttributeTypeAndValue
96 * AttributeTypeAndValue ::= SEQUENCE
    [all...]
AttributeTypeAndValue.java 10 public class AttributeTypeAndValue
16 private AttributeTypeAndValue(ASN1Sequence seq)
22 public static AttributeTypeAndValue getInstance(Object o)
24 if (o instanceof AttributeTypeAndValue)
26 return (AttributeTypeAndValue)o;
30 return new AttributeTypeAndValue(ASN1Sequence.getInstance(o));
36 public AttributeTypeAndValue(
56 * AttributeTypeAndValue ::= SEQUENCE {
X500NameBuilder.java 32 public X500NameBuilder addRDN(AttributeTypeAndValue attrTAndV)
53 AttributeTypeAndValue[] avs = new AttributeTypeAndValue[oids.length];
57 avs[i] = new AttributeTypeAndValue(oids[i], values[i]);
63 public X500NameBuilder addMultiValuedRDN(AttributeTypeAndValue[] attrTAndVs)
X500Name.java 23 * RelativeDistinguishedName ::= SET SIZE (1..MAX) OF AttributeTypeAndValue
25 * AttributeTypeAndValue ::= SEQUENCE {
168 AttributeTypeAndValue[] attr = rdn.getTypesAndValues();
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/pkcs10/
CertificationRequestInfoTest.java 30 import org.apache.harmony.security.x501.AttributeTypeAndValue;
52 attributes.add(new AttributeTypeAndValue("1.2.840.113549.1.9.1",
79 AttributeTypeAndValue certReqInfoATaV = (AttributeTypeAndValue) certReqInfo
81 AttributeTypeAndValue decodedATaV = (AttributeTypeAndValue) decoded
CertificationRequestTest.java 29 import org.apache.harmony.security.x501.AttributeTypeAndValue;
52 attributes.add(new AttributeTypeAndValue("1.2.840.113549.1.9.1",
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeTypeAndValueComparator.java 30 * AttributeTypeAndValue comparator
41 * first AttributeTypeAndValue
43 * second AttributeTypeAndValue
44 * @return -1 of first AttributeTypeAndValue "less" than second
45 * AttributeTypeAndValue 1 otherwise, 0 if they are equal
52 AttributeTypeAndValue atav1 = (AttributeTypeAndValue) obj1;
53 AttributeTypeAndValue atav2 = (AttributeTypeAndValue) obj2;
Name.java 58 private List<List<AttributeTypeAndValue>> rdn;
75 this.rdn = (List<List<AttributeTypeAndValue>>) in.content;
88 private Name(List<List<AttributeTypeAndValue>> rdn) {
173 List<AttributeTypeAndValue> atavList = rdn.get(i);
176 atavList = new ArrayList<AttributeTypeAndValue>(atavList);
181 Iterator<AttributeTypeAndValue> it = atavList.iterator();
183 AttributeTypeAndValue attributeTypeAndValue = it.next();
184 attributeTypeAndValue.appendName(format, name);
232 * SET OF AttributeTypeAndValue
    [all...]
AttributeTypeAndValue.java 42 * X.501 AttributeTypeAndValue
44 public final class AttributeTypeAndValue {
54 /** known attribute types for RFC2253 (see 2.3. Converting AttributeTypeAndValue) */
189 private AttributeTypeAndValue(int[] oid, AttributeValue value) throws IOException {
199 * Creates AttributeTypeAndValue with OID and AttributeValue. Parses OID
209 public AttributeTypeAndValue(String sOid, AttributeValue value) throws IOException {
228 * Appends AttributeTypeAndValue string representation
288 * Gets type of the AttributeTypeAndValue
296 * X.501 AttributeTypeAndValue structure is defined as follows:
298 * AttributeTypeAndValue ::= SEQUENCE
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
DNParser.java 28 import org.apache.harmony.security.x501.AttributeTypeAndValue;
384 * each RDN is represented as a list of AttributeTypeAndValue objects
386 public List<List<AttributeTypeAndValue>> parse() throws IOException {
387 List<List<AttributeTypeAndValue>> list = new ArrayList<List<AttributeTypeAndValue>>();
394 List<AttributeTypeAndValue> atav = new ArrayList<AttributeTypeAndValue>();
398 atav.add(new AttributeTypeAndValue(attType, new AttributeValue("", false)));
405 atav.add(new AttributeTypeAndValue(attType, new AttributeValue(quotedAV(), hasQE)));
408 atav.add(new AttributeTypeAndValue(attType, new AttributeValue(hexAV(), encoded)))
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs10/
CertificationRequestInfo.java 28 import org.apache.harmony.security.x501.AttributeTypeAndValue;
112 AttributeTypeAndValue.ASN1)) // attributes
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs8/
PrivateKeyInfo.java 29 import org.apache.harmony.security.x501.AttributeTypeAndValue;
107 new ASN1Implicit(0, new ASN1SetOf(AttributeTypeAndValue.ASN1)) // attributes
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/style/
BCStyle.java 13 import org.bouncycastle.asn1.x500.AttributeTypeAndValue;
385 AttributeTypeAndValue[] atvs1 = rdn1.getTypesAndValues();
386 AttributeTypeAndValue[] atvs2 = rdn2.getTypesAndValues();
421 private boolean atvAreEqual(AttributeTypeAndValue atv1, AttributeTypeAndValue atv2)
472 AttributeTypeAndValue[] atv = rdns[i].getTypesAndValues();
519 AttributeTypeAndValue[] atv = rdns[i].getTypesAndValues();
RFC4519Style.java 11 import org.bouncycastle.asn1.x500.AttributeTypeAndValue;
274 AttributeTypeAndValue[] atvs1 = rdn1.getTypesAndValues();
275 AttributeTypeAndValue[] atvs2 = rdn2.getTypesAndValues();
310 private boolean atvAreEqual(AttributeTypeAndValue atv1, AttributeTypeAndValue atv2)
370 AttributeTypeAndValue[] atv = rdns[i].getTypesAndValues();
418 AttributeTypeAndValue[] atv = rdns[i].getTypesAndValues();
IETFUtils.java 13 import org.bouncycastle.asn1.x500.AttributeTypeAndValue;
156 AttributeTypeAndValue typeAndValue,
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
JarUtils.java 44 import org.apache.harmony.security.x501.AttributeTypeAndValue;
143 List<AttributeTypeAndValue> atr = sigInfo.getAuthenticatedAttributes();
156 for (AttributeTypeAndValue a : atr) {
  /external/chromium/net/base/
x509_cert_types_mac.cc 287 rdn_struct.AttributeTypeAndValue[pair];

Completed in 369 milliseconds