summaryrefslogtreecommitdiffstats
path: root/src/crypto/sha512_224.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/sha512_224.c')
-rw-r--r--src/crypto/sha512_224.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/crypto/sha512_224.c b/src/crypto/sha512_224.c
index 8c37b566b..b6728726c 100644
--- a/src/crypto/sha512_224.c
+++ b/src/crypto/sha512_224.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/sha512.h>
/** SHA-512/224 initial digest values */
@@ -71,13 +70,3 @@ struct digest_algorithm sha512_224_algorithm = {
.update = sha512_update,
.final = sha512_final,
};
-
-/** "sha512_224" object identifier */
-static uint8_t oid_sha512_224[] = { ASN1_OID_SHA512_224 };
-
-/** "sha512_224" OID-identified algorithm */
-struct asn1_algorithm oid_sha512_224_algorithm __asn1_algorithm = {
- .name = "sha512/224",
- .digest = &sha512_224_algorithm,
- .oid = ASN1_OID_CURSOR ( oid_sha512_224 ),
-};