Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(337)

Side by Side Diff: tests/standalone/io/certificates/README

Issue 1319703002: Breaking Change: merge BoringSSL branch into master (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 This directory, tests/standalone/io/certificates, contains the
2 X509 TLS certificates and private keys needed to run tests of Dart's
3 secure networking code. The SecureSocket and SecureServer classes
4 are tested by making TLS (formerly called SSL) connections, secured
5 by certificates created by the create_test_certificates script in
6 the parent directory, and copied into this directory.
7
8 server_chain.pem:
9 Contains the chain of certificates, from the self-signed
10 test certificate authority, through the intermediate CA, to the server
11 certificate, used on the server side of a test connection.
12
13 server_key.pem:
14 Contains the private key for the server certificate
15
16 trusted_certs.pem:
17 Contains the self-signed certificate of the test certificate authority.
18 This certificate is set as "trusted" by the client side of the connection
19 in its SecurityContext object, so that a verified TLS connection to the
20 server can be made.
21
22 untrusted_server_chain.pem:
23 Contains a chain of certificates, from a different self-signed
24 test certificate authority, through an intermediate CA, to a server
25 certificate, used on the server side of a test connection that is intended
26 to fail because the client does not accept this certificate authority
27
28 untrusted_server_key.pem:
29 Contains the private key for the untrusted server certificate
30 in untrusted_server_chain.pem
31
OLDNEW
« no previous file with comments | « tests/lib/mirrors/invocation_fuzz_test.dart ('k') | tests/standalone/io/certificates/server_chain.pem » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698