summaryrefslogtreecommitdiffstats
path: root/src/crypto/sha384.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/sha384.c')
-rw-r--r--src/crypto/sha384.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/crypto/sha384.c b/src/crypto/sha384.c
index 017751826..f1af6fc6f 100644
--- a/src/crypto/sha384.c
+++ b/src/crypto/sha384.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-384 initial digest values */
@@ -70,13 +69,3 @@ struct digest_algorithm sha384_algorithm = {
.update = sha512_update,
.final = sha512_final,
};
-
-/** "sha384" object identifier */
-static uint8_t oid_sha384[] = { ASN1_OID_SHA384 };
-
-/** "sha384" OID-identified algorithm */
-struct asn1_algorithm oid_sha384_algorithm __asn1_algorithm = {
- .name = "sha384",
- .digest = &sha384_algorithm,
- .oid = ASN1_OID_CURSOR ( oid_sha384 ),
-};