HomeSort by relevance Sort by last modified time
    Searched refs:AttributeTypeAndValue (Results 1 - 23 of 23) 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;
108 public List<AttributeTypeAndValue> getAuthenticatedAttributes() {
181 AttributeTypeAndValue.ASN1)),//unauthenticatedAttributes
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
RDN.java 52 public RDN(AttributeTypeAndValue attrTAndV)
62 public RDN(AttributeTypeAndValue[] aAndVs)
73 * Return the number of AttributeTypeAndValue objects in this RDN,
82 public AttributeTypeAndValue getFirst()
89 return AttributeTypeAndValue.getInstance(this.values.getObjectAt(0));
92 public AttributeTypeAndValue[] getTypesAndValues()
94 AttributeTypeAndValue[] tmp = new AttributeTypeAndValue[values.size()];
98 tmp[i] = AttributeTypeAndValue.getInstance(values.getObjectAt(i));
107 * SET OF AttributeTypeAndValue
    [all...]
AttributeTypeAndValue.java 11 public class AttributeTypeAndValue
17 private AttributeTypeAndValue(ASN1Sequence seq)
23 public static AttributeTypeAndValue getInstance(Object o)
25 if (o instanceof AttributeTypeAndValue)
27 return (AttributeTypeAndValue)o;
31 return new AttributeTypeAndValue(ASN1Sequence.getInstance(o));
37 public AttributeTypeAndValue(
57 * AttributeTypeAndValue ::= SEQUENCE {
X500NameBuilder.java 38 public X500NameBuilder addRDN(AttributeTypeAndValue attrTAndV)
59 AttributeTypeAndValue[] avs = new AttributeTypeAndValue[oids.length];
63 avs[i] = new AttributeTypeAndValue(oids[i], values[i]);
69 public X500NameBuilder addMultiValuedRDN(AttributeTypeAndValue[] attrTAndVs)
X500Name.java 22 * RelativeDistinguishedName ::= SET SIZE (1..MAX) OF AttributeTypeAndValue
24 * AttributeTypeAndValue ::= SEQUENCE {
188 AttributeTypeAndValue[] attr = rdn.getTypesAndValues();
220 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;
51 attributes.add(new AttributeTypeAndValue("1.2.840.113549.1.9.1",
78 AttributeTypeAndValue certReqInfoATaV = (AttributeTypeAndValue) certReqInfo
80 AttributeTypeAndValue decodedATaV = (AttributeTypeAndValue) decoded
CertificationRequestTest.java 29 import org.apache.harmony.security.x501.AttributeTypeAndValue;
50 attributes.add(new AttributeTypeAndValue("1.2.840.113549.1.9.1",
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
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...]
AttributeTypeAndValueComparator.java 30 * AttributeTypeAndValue comparator
33 public class AttributeTypeAndValueComparator implements Comparator<AttributeTypeAndValue>,
42 * first AttributeTypeAndValue
44 * second AttributeTypeAndValue
45 * @return -1 of first AttributeTypeAndValue "less" than second
46 * AttributeTypeAndValue 1 otherwise, 0 if they are equal
48 public int compare(AttributeTypeAndValue atav1, AttributeTypeAndValue atav2) {
AttributeTypeAndValue.java 42 * X.501 AttributeTypeAndValue
44 public final class AttributeTypeAndValue {
54 /** known attribute types for RFC2253 (see 2.3. Converting AttributeTypeAndValue) */
215 private AttributeTypeAndValue(int[] oid, AttributeValue value) throws IOException {
225 * Creates AttributeTypeAndValue with OID and AttributeValue.
232 public AttributeTypeAndValue(ObjectIdentifier oid, AttributeValue value) throws IOException {
238 * Appends AttributeTypeAndValue string representation
300 * Gets type of the AttributeTypeAndValue
312 * X.501 AttributeTypeAndValue structure is defined as follows:
314 * AttributeTypeAndValue ::= SEQUENCE
    [all...]
AttributeValue.java 66 if (oid == AttributeTypeAndValue.EMAILADDRESS || oid == AttributeTypeAndValue.DC) {
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
DNParser.java 29 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>>();
393 ObjectIdentifier oid = AttributeTypeAndValue.getObjectIdentifier(attType);
395 List<AttributeTypeAndValue> atav = new ArrayList<AttributeTypeAndValue>();
399 atav.add(new AttributeTypeAndValue(oid, new AttributeValue("", false, oid)));
406 atav.add(new AttributeTypeAndValue(oid, new AttributeValue(quotedAV(), hasQE, oid)))
    [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/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
IETFUtils.java 14 import org.bouncycastle.asn1.x500.AttributeTypeAndValue;
306 AttributeTypeAndValue[] atv = rdn.getTypesAndValues();
334 AttributeTypeAndValue typeAndValue,
524 AttributeTypeAndValue[] atvs1 = rdn1.getTypesAndValues();
525 AttributeTypeAndValue[] atvs2 = rdn2.getTypesAndValues();
560 private static boolean atvAreEqual(AttributeTypeAndValue atv1, AttributeTypeAndValue atv2)
AbstractX500NameStyle.java 10 import org.bouncycastle.asn1.x500.AttributeTypeAndValue;
61 AttributeTypeAndValue[] atv = rdns[i].getTypesAndValues();
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
JarUtils.java 48 import org.apache.harmony.security.x501.AttributeTypeAndValue;
175 List<AttributeTypeAndValue> atr = sigInfo.getAuthenticatedAttributes();
188 for (AttributeTypeAndValue a : atr) {
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/offline-m2/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 

Completed in 714 milliseconds