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

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/
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 {
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
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...]

Completed in 1345 milliseconds