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

Side by Side Diff: net/data/ssl/scripts/generate-client-certificates-keychains.sh

Issue 2411023002: *WIP* Mac Unittest for client cert selection with intermediate certs
Patch Set: rebase Created 4 years, 1 month 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/sh
2
3 # Copyright 2016 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 set -e
8 set -x
9
10 rm -rf out
11 mkdir out
12
13 echo "Generating keychain"
14 ./generate-keychain.sh $PWD/out/client_1.keychain \
15 --import "../certificates/client_1.pem" "../certificates/client_1.key"
16 ./generate-keychain.sh $PWD/out/client_1_ca.keychain \
17 --untrusted "../certificates/client_1_ca.pem"
18
19 echo "Copying outputs"
20 cp out/client_1.keychain ../certificates
21 cp out/client_1_ca.keychain ../certificates
22
OLDNEW
« no previous file with comments | « net/data/ssl/certificates/client_1_ca.keychain ('k') | net/data/ssl/scripts/generate-keychain.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698