Searched defs:subject (Results 1 - 25 of 80) sorted by relevance

1234

/external/v8/test/mjsunit/
H A Dregexp-call-as-function.js33 var subject = "xyzabcde"; variable
35 assertEquals(expected, String(regexp.exec(subject)));
36 assertThrows(function(){ regexp(subject); });
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DSubjectParser.java7 * employees are not subject to copyright protection in the United States
45 * @param subject the header to parse
47 public SubjectParser(String subject) { argument
48 super(subject);
65 Subject subject = new Subject();
75 subject.setSubject(s.trim());
82 return subject;
87 String subject[] = {
92 for (int i = 0; i < subject.length; i++ ) {
94 new SubjectParser(subject[
[all...]
/external/nist-sip/java/javax/sip/header/
H A DSubjectHeader.java9 void setSubject(String subject) throws ParseException; argument
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DAttributeCertificateIssuer.java65 private boolean matchesDN(X500Name subject, GeneralNames targets) argument
75 if (X500Name.getInstance(gn.getName()).equals(subject))
H A DAttributeCertificateHolder.java178 private boolean matchesDN(X500Name subject, GeneralNames targets) argument
188 if (X500Name.getInstance(gn.getName()).equals(subject))
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSubject.java7 * employees are not subject to copyright protection in the United States
54 /** subject field
56 protected String subject; field in class:Subject
69 if (subject != null) {
70 return subject;
77 * Sets the subject value of the SubjectHeader to the supplied string
78 * subject value.
80 * @param subject - the new subject value of this header
82 * unexpectedly while parsing the subject valu
84 setSubject(String subject) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DCertificationRequestInfo.java20 * subject Name,
37 X500Name subject; field in class:CertificationRequestInfo
57 X500Name subject,
61 this.subject = subject;
65 if ((subject == null) || (version == null) || (subjectPKInfo == null))
75 X509Name subject,
79 this.subject = X500Name.getInstance(subject.toASN1Primitive());
83 if ((subject
56 CertificationRequestInfo( X500Name subject, SubjectPublicKeyInfo pkInfo, ASN1Set attributes) argument
74 CertificationRequestInfo( X509Name subject, SubjectPublicKeyInfo pkInfo, ASN1Set attributes) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DAttributeCertificateIssuer.java110 private boolean matchesDN(X500Principal subject, GeneralNames targets) argument
122 if (new X500Principal(((ASN1Encodable)gn.getName()).toASN1Primitive().getEncoded()).equals(subject))
H A DAttributeCertificateHolder.java207 private boolean matchesDN(X509Principal subject, GeneralNames targets) argument
220 .getEncoded()).equals(subject))
H A DX509V1CertificateGenerator.java117 * Set the subject distinguished name. The subject describes the entity associated with the public key.
120 X500Principal subject)
124 tbsGen.setSubject(new X509Principal(subject.getEncoded()));
133 * Set the subject distinguished name. The subject describes the entity associated with the public key.
136 X509Name subject)
138 tbsGen.setSubject(subject);
181 * generate an X509 certificate, based on the current issuer and subject
200 * generate an X509 certificate, based on the current issuer and subject
119 setSubjectDN( X500Principal subject) argument
135 setSubjectDN( X509Name subject) argument
[all...]
H A DX509V3CertificateGenerator.java122 * Set the subject distinguished name. The subject describes the entity associated with the public key.
125 X500Principal subject)
129 tbsGen.setSubject(new X509Principal(subject.getEncoded()));
138 * Set the subject distinguished name. The subject describes the entity associated with the public key.
141 X509Name subject)
143 tbsGen.setSubject(subject);
187 * Set the subject unique ID - note: it is very rare that it is correct to do this.
314 * generate an X509 certificate, based on the current issuer and subject
124 setSubjectDN( X500Principal subject) argument
140 setSubjectDN( X509Name subject) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DV1TBSCertificateGenerator.java19 * subject Name,
33 X500Name subject; field in class:V1TBSCertificateGenerator
95 X509Name subject)
97 this.subject = X500Name.getInstance(subject.toASN1Primitive());
101 X500Name subject)
103 this.subject = subject;
116 || (subject == null) || (subjectPublicKeyInfo == null))
138 seq.add(subject);
94 setSubject( X509Name subject) argument
100 setSubject( X500Name subject) argument
[all...]
H A DTBSCertificate.java21 * subject Name,
42 X500Name subject; field in class:TBSCertificate
103 subject = X500Name.getInstance(seq.getObjectAt(seqStart + 5));
165 return subject;
H A DTBSCertificateStructure.java22 * subject Name,
44 X500Name subject; field in class:TBSCertificateStructure
105 subject = X500Name.getInstance(seq.getObjectAt(seqStart + 5));
167 return subject;
H A DV3TBSCertificateGenerator.java20 * subject Name,
37 X500Name subject; field in class:V3TBSCertificateGenerator
104 X509Name subject)
106 this.subject = X500Name.getInstance(subject.toASN1Primitive());
110 X500Name subject)
112 this.subject = subject;
162 || (subject == null && !altNamePresentAndCritical) || (subjectPublicKeyInfo == null))
184 if (subject !
103 setSubject( X509Name subject) argument
109 setSubject( X500Name subject) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
H A DPKCS10CertificationRequest.java63 * subject Name,
289 X509Name subject,
296 this(signatureAlgorithm, subject, key, attributes, signingKey, BouncyCastleProvider.PROVIDER_NAME);
317 X500Principal subject,
324 this(signatureAlgorithm, convertName(subject), key, attributes, signingKey, BouncyCastleProvider.PROVIDER_NAME);
332 X500Principal subject,
340 this(signatureAlgorithm, convertName(subject), key, attributes, signingKey, provider);
348 X509Name subject,
371 if (subject == null)
373 throw new IllegalArgumentException("subject mus
287 PKCS10CertificationRequest( String signatureAlgorithm, X509Name subject, PublicKey key, ASN1Set attributes, PrivateKey signingKey) argument
315 PKCS10CertificationRequest( String signatureAlgorithm, X500Principal subject, PublicKey key, ASN1Set attributes, PrivateKey signingKey) argument
330 PKCS10CertificationRequest( String signatureAlgorithm, X500Principal subject, PublicKey key, ASN1Set attributes, PrivateKey signingKey, String provider) argument
346 PKCS10CertificationRequest( String signatureAlgorithm, X509Name subject, PublicKey key, ASN1Set attributes, PrivateKey signingKey, String provider) argument
[all...]
/external/openssl/crypto/ocsp/
H A Docsp_lib.c76 OCSP_CERTID *OCSP_cert_to_id(const EVP_MD *dgst, X509 *subject, X509 *issuer) argument
84 if (subject)
86 iname = X509_get_issuer_name(subject);
87 serial = X509_get_serialNumber(subject);
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_old.h80 int depth, const char *subject,
117 int depth, const char *subject,
116 wpa_supplicant_dbus_notify_certification(struct wpa_supplicant *wpa_s, int depth, const char *subject, const char *cert_hash, const struct wpabuf *cert) argument
H A Ddbus_old.c546 int depth, const char *subject,
580 DBUS_TYPE_STRING, &subject,
545 wpa_supplicant_dbus_notify_certification(struct wpa_supplicant *wpa_s, int depth, const char *subject, const char *cert_hash, const struct wpabuf *cert) argument
/external/chromium/net/base/
H A Dx509_certificate.h130 X509Certificate(const std::string& subject, const std::string& issuer,
182 // |subject| is a distinguished name defined in RFC4514.
196 const std::string& subject,
203 // The subject of the certificate. For HTTPS server certificates, this
204 // represents the web server. The common name of the subject should match
206 const CertPrincipal& subject() const { return subject_; } function in class:net::X509Certificate
225 // Otherwise, it gets the common name in the subject field.
439 // The subject of the certificate.
/external/openssl/apps/
H A Dsmime.c107 char *to = NULL, *from = NULL, *subject = NULL; local
248 else if (!strcmp (*args, "-subject"))
252 subject = *++args;
478 BIO_printf (bio_err, "-subject s subject\n");
781 if (subject)
782 BIO_printf(out, "Subject: %s\n", subject);
/external/v8/src/
H A Dinterpreter-irregexp.cc49 Vector<const uc16> subject) {
51 unibrow::uchar old_char = subject[from++];
52 unibrow::uchar new_char = subject[current++];
70 Vector<const char> subject) {
72 unsigned int old_char = subject[from++];
73 unsigned int new_char = subject[current++];
192 Vector<const Char> subject,
306 if (pos >= subject.length()) {
309 current_char = subject[pos];
316 current_char = subject[po
45 BackRefMatchesNoCase(Canonicalize* interp_canonicalize, int from, int current, int len, Vector<const uc16> subject) argument
66 BackRefMatchesNoCase(Canonicalize* interp_canonicalize, int from, int current, int len, Vector<const char> subject) argument
190 RawMatch(Isolate* isolate, const byte* code_base, Vector<const Char> subject, int* registers, int current, uint32_t current_char) argument
628 Match( Isolate* isolate, Handle<ByteArray> code_array, Handle<String> subject, int* registers, int start_position) argument
[all...]
H A Dregexp-macro-assembler.cc75 String* subject,
78 ASSERT(subject->IsExternalString() || subject->IsSeqString());
80 ASSERT(start_index <= subject->length());
81 if (subject->IsAsciiRepresentation()) {
83 if (StringShape(subject).IsExternal()) {
84 const char* data = ExternalAsciiString::cast(subject)->GetChars();
87 ASSERT(subject->IsSeqAsciiString());
88 char* data = SeqAsciiString::cast(subject)->GetChars();
94 if (StringShape(subject)
74 StringCharacterPosition( String* subject, int start_index) argument
104 Match( Handle<Code> regexp_code, Handle<String> subject, int* offsets_vector, int offsets_vector_length, int previous_index, Isolate* isolate) argument
[all...]
H A Dstring-search.h40 // independently of subject and pattern char size.
101 int Search(Vector<const SubjectChar> subject, int index) { argument
102 return strategy_(this, subject, index);
129 Vector<const SubjectChar> subject,
133 Vector<const SubjectChar> subject,
137 Vector<const SubjectChar> subject,
142 Vector<const SubjectChar> subject,
146 Vector<const SubjectChar> subject,
164 // Both pattern and subject are UC16. Reduce character to equivalence class.
212 Vector<const SubjectChar> subject,
210 SingleCharSearch( StringSearch<PatternChar, SubjectChar>* search, Vector<const SubjectChar> subject, int index) argument
245 CharCompare(const PatternChar* pattern, const SubjectChar* subject, int length) argument
262 LinearSearch( StringSearch<PatternChar, SubjectChar>* search, Vector<const SubjectChar> subject, int index) argument
299 BoyerMooreSearch( StringSearch<PatternChar, SubjectChar>* search, Vector<const SubjectChar> subject, int start_index) argument
422 BoyerMooreHorspoolSearch( StringSearch<PatternChar, SubjectChar>* search, Vector<const SubjectChar> subject, int start_index) argument
507 InitialSearch( StringSearch<PatternChar, SubjectChar>* search, Vector<const SubjectChar> subject, int index) argument
562 SearchString(Isolate* isolate, Vector<const SubjectChar> subject, Vector<const PatternChar> pattern, int start_index) argument
[all...]
/external/openssl/crypto/x509v3/
H A Dv3_purp.c371 /* Does subject name match issuer ? */
692 * subject name.
694 * 1. Check issuer_name(subject) == subject_name(issuer)
695 * 2. If akid(subject) exists check it matches issuer
701 int X509_check_issued(X509 *issuer, X509 *subject) argument
704 X509_get_issuer_name(subject)))
707 x509v3_cache_extensions(subject);
709 if(subject->akid)
711 int ret = X509_check_akid(issuer, subject->akid);
716 if(subject
[all...]

Completed in 5967 milliseconds

1234