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

Side by Side Diff: tests/external_rsa_signer.sh

Issue 4194003: Add support for using external signing application and .pem private key files to vbutil_keyblock. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/vboot_reference.git
Patch Set: fix read() bug Created 10 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 | Annotate | Revision Log
« no previous file with comments | « host/lib/host_signature.c ('k') | tests/run_vbutil_tests.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
3 if [ $# -ne 1 ]; then
4 echo "Usage: $0 <private_key_pem_file>"
5 echo "Reads data to sign from stdin, encrypted data is output to stdout"
6 exit 1
7 fi
8
9 openssl rsautl -sign -inkey $1
OLDNEW
« no previous file with comments | « host/lib/host_signature.c ('k') | tests/run_vbutil_tests.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698