diff options
author | David Howells <dhowells@redhat.com> | 2014-07-01 11:02:51 -0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2014-07-09 09:58:37 -0400 |
commit | 26d1164be37f1145a96af15f294122876d8e5c77 (patch) | |
tree | 3cf981b54d3a275710d840c3674e09271c00c36d /crypto/asymmetric_keys/Makefile | |
parent | 9c87e0f10e281f782312e7b6aa202f2d434c84bf (diff) |
pefile: Parse a PE binary to find a key and a signature contained therein
Parse a PE binary to find a key and a signature contained therein. Later
patches will check the signature and add the key if the signature checks out.
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Vivek Goyal <vgoyal@redhat.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'crypto/asymmetric_keys/Makefile')
-rw-r--r-- | crypto/asymmetric_keys/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/crypto/asymmetric_keys/Makefile b/crypto/asymmetric_keys/Makefile index 92d0e9af24d5..3e4de5297015 100644 --- a/crypto/asymmetric_keys/Makefile +++ b/crypto/asymmetric_keys/Makefile | |||
@@ -47,3 +47,11 @@ clean-files += pkcs7-asn1.c pkcs7-asn1.h | |||
47 | obj-$(CONFIG_PKCS7_TEST_KEY) += pkcs7_test_key.o | 47 | obj-$(CONFIG_PKCS7_TEST_KEY) += pkcs7_test_key.o |
48 | pkcs7_test_key-y := \ | 48 | pkcs7_test_key-y := \ |
49 | pkcs7_key_type.o | 49 | pkcs7_key_type.o |
50 | |||
51 | # | ||
52 | # Signed PE binary-wrapped key handling | ||
53 | # | ||
54 | obj-$(CONFIG_SIGNED_PE_FILE_VERIFICATION) += verify_signed_pefile.o | ||
55 | |||
56 | verify_signed_pefile-y := \ | ||
57 | verify_pefile.o | ||