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

Side by Side Diff: scripts/keygeneration/make_pair.sh

Issue 6594131: Add support for using separate developer firmware keyblock while signing. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/vboot_reference.git@master
Patch Set: fix typo Created 9 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « scripts/keygeneration/make_keyblock.sh ('k') | tests/devkeys/create_new_keys.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5 #
6 # Generate .vbpubk and .vbprivk pairs with the given algorithm id.
7
8 # Load common constants and functions.
9 . "$(dirname "$0")/common.sh"
10
11 if [ $# -ne 2 ]; then
12 cat <<EOF
13 Usage: $0 <algoid> <out_keypair>
14
15 Output: <out_keypair>.vbprivk and <out_keypair>.vbpubk
16 EOF
17 exit 1
18 fi
19
20 algoid=$1
21 out_keypair=$2
22
23 make_pair $out_keypair $algoid
OLDNEW
« no previous file with comments | « scripts/keygeneration/make_keyblock.sh ('k') | tests/devkeys/create_new_keys.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698