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

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

Issue 12220104: Wire up SSL client authentication for OpenSSL/Android through the net/ stack (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: net/data/ssl/scripts/client_authentication/run-test-server.sh
diff --git a/net/data/ssl/scripts/client_authentication/run-test-server.sh b/net/data/ssl/scripts/client_authentication/run-test-server.sh
deleted file mode 100755
index b5b64f4ffdacacd1fe58763491a8b0c04b2102ab..0000000000000000000000000000000000000000
--- a/net/data/ssl/scripts/client_authentication/run-test-server.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-
-# Copyright (c) 2013 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# Helper script for local manual testing. Runs an openssl test server at
-# localhost:4433. The server will be accessible for www connections and will
-# require a client certificate issued by Client Auth Test Root 1.
-openssl s_server \
- -accept 4433 \
- -cert out/root_1.pem \
- -key out/root_1.key \
- -www \
- -Verify 5 \
- -CAfile out/root_1.pem

Powered by Google App Engine
This is Rietveld 408576698