Lines Matching full:cert
37 cert: { subject: { CN: 'a.com' } }, property
38 error: 'Host: false. is not cert\'s CN: a.com'
42 cert: { subject: { CN: 'a.com' } }, property
43 error: 'Host: null. is not cert\'s CN: a.com'
47 cert: { subject: { CN: 'a.com' } }, property
48 error: 'Host: undefined. is not cert\'s CN: a.com'
52 { host: 'a.com', cert: { subject: { CN: 'a.com' } } }, property
53 { host: 'a.com', cert: { subject: { CN: 'A.COM' } } }, property
56 cert: { subject: { CN: 'b.com' } }, property
57 error: 'Host: a.com. is not cert\'s CN: b.com'
59 { host: 'a.com', cert: { subject: { CN: 'a.com.' } } }, property
62 cert: { subject: { CN: '.a.com' } }, property
63 error: 'Host: a.com. is not cert\'s CN: .a.com'
72 cert: { subject: { CN: '8.8.8.8' } }, property
73 error: 'IP: 8.8.8.8 is not in the cert\'s list: '
80 cert: { subject: { CN: '8.8.8.8' }, subjectaltname: 'DNS:8.8.8.8' }, property
81 error: 'IP: 8.8.8.8 is not in the cert\'s list: '
88 cert: { subject: { CN: '8.8.8.8' }, subjectaltname: 'URI:http://8.8.8.8/' }, property
89 error: 'IP: 8.8.8.8 is not in the cert\'s list: '
95 cert: { subject: { CN: '8.8.8.8' }, subjectaltname: 'IP Address:8.8.8.8' } property
101 cert: { property
105 error: 'IP: 8.8.8.8 is not in the cert\'s list: '
109 { host: 'b.a.com', cert: { subject: { CN: '*.a.com' } } }, property
112 cert: { subject: { CN: '*.a.com' } }, property
113 error: 'Host: ba.com. is not cert\'s CN: *.a.com'
117 cert: { subject: { CN: '*n.b.com' } }, property
118 error: 'Host: \n.b.com. is not cert\'s CN: *n.b.com'
121 cert: { property
125 error: 'Host: b.a.com. is not in the cert\'s altnames: ' +
129 cert: { subject: { CN: 'b*b.a.com' } }, property
130 error: 'Host: b.a.com. is not cert\'s CN: b*b.a.com'
133 // Empty Cert
136 cert: { }, property
137 error: 'Cert does not contain a DNS name'
142 host: 'a.com', cert: { property
149 host: 'a.b.a.com', cert: { property
152 error: 'Cert does not contain a DNS name'
157 host: 'foo.com', cert: { property
164 host: 'a.com', cert: { property
168 error: 'Host: a.com. is not in the cert\'s altnames: ' +
172 host: 'a.com', cert: { property
176 error: 'Host: a.com. is not in the cert\'s altnames: ' +
180 host: 'a.co.uk', cert: { property
186 host: 'a.com', cert: { property
190 error: 'Host: a.com. is not in the cert\'s altnames: ' +
194 host: 'a.com', cert: { property
198 error: 'Host: a.com. is not in the cert\'s altnames: ' +
202 host: 'a.com', cert: { property
208 host: 'a.com', cert: { property
216 host: 'a.com', cert: { property
220 error: 'Host: a.com. is not in the cert\'s altnames: ' +
224 host: 'b.a.com', cert: { property
230 host: 'c.b.a.com', cert: { property
234 error: 'Host: c.b.a.com. is not in the cert\'s altnames: ' +
238 host: 'b.a.com', cert: { property
244 host: 'a-cb.a.com', cert: { property
250 host: 'a.b.a.com', cert: { property
254 error: 'Host: a.b.a.com. is not in the cert\'s altnames: ' +
259 host: 'a.b.a.com', cert: { property
266 host: 'a.b.a.com', cert: { property
270 error: 'Cert does not contain a DNS name'
273 host: 'a.b.a.com', cert: { property
277 error: 'Cert does not contain a DNS name'
281 host: 'a.b.a.com', cert: { property
285 error: 'Cert does not contain a DNS name'
288 host: '127.0.0.1', cert: { property
294 host: '127.0.0.2', cert: { property
298 error: 'IP: 127.0.0.2 is not in the cert\'s list: ' +
302 host: '127.0.0.1', cert: { property
306 error: 'IP: 127.0.0.1 is not in the cert\'s list: '
309 host: 'localhost', cert: { property
313 error: 'Host: localhost. is not in the cert\'s altnames: ' +
319 cert: { subject: { CN: '*.example.com' } }, property
326 cert: { subject: { CN: 'xn--*.example.com' } }, property
327 error: 'Host: xn--bcher-kva.example.com. is not cert\'s CN: ' +
333 const err = tls.checkServerIdentity(test.host, test.cert);