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

Side by Side Diff: net/data/ssl/scripts/client_authentication/run-test-server.sh

Issue 12035105: Move client certificates retrieval logic out of the SSL sockets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing license header Created 7 years, 10 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 #!/bin/bash
2
3 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 # Helper script for local manual testing. Runs an openssl test server at
8 # localhost:4433. The server will be accessible for www connections and will
9 # require a client certificate issued by Client Auth Test Root 1.
10 openssl s_server \
11 -accept 4433 \
12 -cert out/root_1.pem \
13 -key out/root_1.key \
14 -www \
15 -Verify 5 \
16 -CAfile out/root_1.pem
OLDNEW
« no previous file with comments | « net/data/ssl/scripts/client_authentication/generate-client-certificates.sh ('k') | net/http/http_network_transaction.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698