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

Side by Side Diff: net/data/ssl/scripts/generate-multi-root-BFE-keychain.sh

Issue 2101303005: CertVerifyProcMac: Add Keychain re-ordering hack, check CRLsets in path pruning loop. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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 #!/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
9 rm -rf out
10 mkdir out
11
12 echo "Generating keychain"
13 ./generate-keychain.sh $PWD/out/multi-root-BFE.keychain --untrusted \
14 "../certificates/multi-root-B-by-F.pem" \
15 "../certificates/multi-root-F-by-E.pem"
16
17 echo "Copying outputs"
18 cp out/multi-root-BFE.keychain ../certificates
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698