diff options
author | Michael Brown <mcb30@ipxe.org> | 2016-07-29 15:40:39 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2016-07-29 15:40:39 +0100 |
commit | 942b798c8d143042fc17c7fadea528fee5cbebc2 (patch) | |
tree | b28d383dd7745c88c406238bebaf5765dfe1c81a /src/config/config.c | |
parent | b7e43b033556106ef3e8b51e6c51710f1d3c999c (diff) | |
download | ipxe-942b798c8d143042fc17c7fadea528fee5cbebc2.tar.gz |
[crypto] Enable both DER and PEM formats by default
Enable both IMAGE_DER and IMAGE_PEM by default, and drag in the
relevant objects only when image_asn1() is present in the binary.
This allows "imgverify" to transparently use either DER or PEM
signature files.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/config.c')
-rw-r--r-- | src/config/config.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/config/config.c b/src/config/config.c index c24b58d5b..e24cfe0d0 100644 --- a/src/config/config.c +++ b/src/config/config.c @@ -188,12 +188,6 @@ REQUIRE_OBJECT ( pnm ); #ifdef IMAGE_PNG REQUIRE_OBJECT ( png ); #endif -#ifdef IMAGE_DER -REQUIRE_OBJECT ( der ); -#endif -#ifdef IMAGE_PEM -REQUIRE_OBJECT ( pem ); -#endif /* * Drag in all requested commands |