HomeSort by relevance Sort by last modified time
    Searched full:rfc822name (Results 1 - 25 of 63) sorted by null

1 2 3

  /libcore/ojluni/src/main/java/sun/security/x509/
RFC822Name.java 34 * This class implements the RFC822Name as required by the GeneralNames
43 public class RFC822Name implements GeneralNameInterface
48 * Create the RFC822Name object from the passed encoded Der value.
50 * @param derValue the encoded DER RFC822Name.
53 public RFC822Name(DerValue derValue) throws IOException {
59 * Create the RFC822Name object with the specified name.
61 * @param name the RFC822Name.
64 public RFC822Name(String name) throws IOException {
70 * Parse an RFC822Name string to see if it is a valid
74 * local-part@ could be empty for an RFC822Name NameConstraint
    [all...]
GeneralName.java 39 * rfc822Name [1] IA5String,
104 name = new RFC822Name(encName);
DistributionPointName.java 52 * rfc822Name [1] IA5String,
NameConstraintsExtension.java 578 RFC822Name emailName;
580 emailName = new RFC822Name(attrValue);
DNSName.java 46 * be encoded as rfc822Name.
DistributionPoint.java 65 * rfc822Name [1] IA5String,
GeneralSubtrees.java 254 newName = new GeneralName(new RFC822Name(""));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
GeneralName.java 25 * rfc822Name [1] IA5String,
50 public static final int rfc822Name = 1;
82 * the address MUST be included as an rfc822Name. The format of an
83 * rfc822Name is an "addr-spec" as defined in RFC 822 [RFC 822].
120 * <li>rfc822Name
144 if (tag == rfc822Name || tag == dNSName || tag == uniformResourceIdentifier)
191 case rfc822Name:
250 case rfc822Name:
PKIXNameConstraintValidator.java 57 case GeneralName.rfc822Name:
91 case GeneralName.rfc822Name:
146 case GeneralName.rfc822Name:
173 case GeneralName.rfc822Name:
201 case GeneralName.rfc822Name:
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/extension/
X509ExtensionUtil.java 78 case GeneralName.rfc822Name:
  /external/boringssl/src/crypto/x509v3/
v3name_test.cc 120 "set rfc822Name: email: [postmaster@example.com] does not match [Postmaster@example.com]",
121 "set rfc822Name: email: [Postmaster@example.com] does not match [postmaster@example.com]",
122 "set rfc822Name: email: [Postmaster@example.com] does not match [postmaster@EXAMPLE.COM]",
123 "set rfc822Name: email: [postmaster@EXAMPLE.COM] does not match [Postmaster@example.com]",
295 {set_altname_email, "set rfc822Name", 0, 1},
v3_ncons.c 274 gntmp.d.rfc822Name = X509_NAME_ENTRY_get_data(ne);
275 if (gntmp.d.rfc822Name->type != V_ASN1_IA5STRING)
360 return nc_email(gen->d.rfc822Name, base->d.rfc822Name);
v3_genn.c 83 ASN1_IMP(GENERAL_NAME, d.rfc822Name, ASN1_IA5STRING, GEN_EMAIL),
  /external/wpa_supplicant_8/src/tls/
x509v3.h 40 char *alt_email; /* rfc822Name */
x509v3.c 856 /* rfc822Name IA5String */
857 wpa_hexdump_ascii(MSG_MSGDUMP, "X509: altName - rfc822Name", pos, len);
865 "embedded NUL byte in rfc822Name (%s[NUL])",
962 * rfc822Name [1] IA5String,
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
CsrUtil.java 89 new GeneralName(GeneralName.rfc822Name, EMAIL)));
SslUtil.java 185 new GeneralName(GeneralName.rfc822Name, "android-tv-remote-support@google.com")));
  /libcore/luni/src/test/java/tests/security/cert/
X509CertSelectorTest.java 76 import sun.security.x509.RFC822Name;
511 GeneralName san1 = new GeneralName(new RFC822Name("rfc@822.Name"));
640 GeneralName san1 = new GeneralName(new RFC822Name("rfc@822.Name"));
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/x509/
verify.go 210 // rfc822Name from a certificate: ?The format of an rfc822Name is a "Mailbox"
634 return errors.New("x509: internal error: rfc822Name SAN failed to parse")
  /prebuilts/go/linux-x86/src/crypto/x509/
verify.go 210 // rfc822Name from a certificate: ?The format of an rfc822Name is a "Mailbox"
634 return errors.New("x509: internal error: rfc822Name SAN failed to parse")
  /external/boringssl/src/include/openssl/
x509v3.h 196 ASN1_IA5STRING *rfc822Name;
208 ASN1_IA5STRING *ia5;/* rfc822Name, dNSName, uniformResourceIdentifier */
  /libcore/ojluni/src/main/java/java/security/cert/
TrustAnchor.java 100 * rfc822Name [1] IA5String,
  /external/scapy/scapy/layers/
x509.py 194 ASN1_root = ASN1F_IA5_STRING("rfc822Name", "")
248 ASN1F_PACKET("rfc822Name", None, X509_RFC822Name,
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
X509CertificateObject.java 886 case GeneralName.rfc822Name:
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
X509CertificateObject.java 912 case GeneralName.rfc822Name:

Completed in 1414 milliseconds

1 2 3