diff options
author | Michael Brown <mcb30@ipxe.org> | 2016-07-29 15:18:35 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2016-07-29 15:18:35 +0100 |
commit | b7e43b033556106ef3e8b51e6c51710f1d3c999c (patch) | |
tree | 0fd3736c5304b0aaea035b9cb2d6bb4121bad938 /src/hci | |
parent | 829fedafcb107d41fb0753361acae5efee376c58 (diff) | |
download | ipxe-b7e43b033556106ef3e8b51e6c51710f1d3c999c.tar.gz |
[build] Remove obsolete explicit object requirements
As of commit b1caa48 ("[crypto] Support SHA-{224,384,512} in X.509
certificates"), the list of supported cryptographic algorithms is
controlled by config/crypto.h.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/hci')
-rw-r--r-- | src/hci/commands/image_trust_cmd.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/hci/commands/image_trust_cmd.c b/src/hci/commands/image_trust_cmd.c index 03e3e4431..d9d37d1d6 100644 --- a/src/hci/commands/image_trust_cmd.c +++ b/src/hci/commands/image_trust_cmd.c @@ -177,8 +177,4 @@ struct command image_trust_commands[] __command = { REQUIRING_SYMBOL ( image_trust_commands ); /* Drag in objects typically required for signature verification */ -REQUIRE_OBJECT ( rsa ); -REQUIRE_OBJECT ( md5 ); -REQUIRE_OBJECT ( sha1 ); -REQUIRE_OBJECT ( sha256 ); REQUIRE_OBJECT ( der ); |