summaryrefslogtreecommitdiff
path: root/host/include
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2010-06-30 21:59:43 -0700
committerBill Richardson <wfrichar@chromium.org>2010-06-30 21:59:43 -0700
commita08b5c9d032be485fe6e2790c23e8c9bb9fca2ad (patch)
tree1bc8a3a828540e5efad996fb22444a707026fd08 /host/include
parent2a80e8a41627b367946480c72cb8c389df8d0cb3 (diff)
downloadvboot-a08b5c9d032be485fe6e2790c23e8c9bb9fca2ad.tar.gz
Adding --repack and --headeronly options to vbutil_kernel
The --repack option lets us sign a previously signed kernel blob with a new kernel data key. The --headeronly option is so we can emit the new verification header separately from the kernel blob. More work to come... Review URL: http://codereview.chromium.org/2812034
Diffstat (limited to 'host/include')
-rw-r--r--host/include/host_key.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/include/host_key.h b/host/include/host_key.h
index 9ce1fa56..e7b18155 100644
--- a/host/include/host_key.h
+++ b/host/include/host_key.h
@@ -22,9 +22,9 @@ typedef struct VbPrivateKey {
} VbPrivateKey;
-/* Read a private key from a file. Caller owns the returned pointer,
+/* Read a private key from a .pem file. Caller owns the returned pointer,
* and must free it with PrivateKeyFree(). */
-VbPrivateKey* PrivateKeyRead(const char* filename, uint64_t algorithm);
+VbPrivateKey* PrivateKeyReadPem(const char* filename, uint64_t algorithm);
/* Free a private key. */