diff options
author | Michael Brown <mcb30@ipxe.org> | 2016-07-28 16:18:23 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2016-07-29 01:12:58 +0100 |
commit | eb7188d04b30dcbc47ac1af621b738cc0923ae38 (patch) | |
tree | fda7f01787ea5ef826befac6be1cf7af55659053 /src/tests/tests.c | |
parent | ef50608029d9f5821dd4567ee8d9aa78294e3091 (diff) | |
download | ipxe-eb7188d04b30dcbc47ac1af621b738cc0923ae38.tar.gz |
[crypto] Add DER image format
Add DER-encoded ASN.1 as an image format. There is no fixed signature
for DER files. We treat an image as DER if it comprises a single
valid SEQUENCE object covering the entire length of the image.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/tests/tests.c')
-rw-r--r-- | src/tests/tests.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tests/tests.c b/src/tests/tests.c index 0ec885f4f..b9679b49e 100644 --- a/src/tests/tests.c +++ b/src/tests/tests.c @@ -69,3 +69,4 @@ REQUIRE_OBJECT ( pccrc_test ); REQUIRE_OBJECT ( linebuf_test ); REQUIRE_OBJECT ( iobuf_test ); REQUIRE_OBJECT ( bitops_test ); +REQUIRE_OBJECT ( der_test ); |