aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/sha224.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/sha224.c')
-rw-r--r--src/crypto/sha224.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/crypto/sha224.c b/src/crypto/sha224.c
index be25f24..e54a0ab 100644
--- a/src/crypto/sha224.c
+++ b/src/crypto/sha224.c
@@ -32,7 +32,6 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#include <stdint.h>
#include <byteswap.h>
#include <ipxe/crypto.h>
-#include <ipxe/asn1.h>
#include <ipxe/sha256.h>
/** SHA-224 initial digest values */
@@ -70,13 +69,3 @@ struct digest_algorithm sha224_algorithm = {
.update = sha256_update,
.final = sha256_final,
};
-
-/** "sha224" object identifier */
-static uint8_t oid_sha224[] = { ASN1_OID_SHA224 };
-
-/** "sha224" OID-identified algorithm */
-struct asn1_algorithm oid_sha224_algorithm __asn1_algorithm = {
- .name = "sha224",
- .digest = &sha224_algorithm,
- .oid = ASN1_OID_CURSOR ( oid_sha224 ),
-};