summaryrefslogtreecommitdiff
path: root/bdb/ecdsa.c
diff options
context:
space:
mode:
authorJoel Kitching <kitching@google.com>2019-07-22 10:23:06 +0800
committerCommit Bot <commit-bot@chromium.org>2019-07-24 06:53:40 +0000
commit34abb32ed2e48ccad95320c37fb001df8e3442fd (patch)
treef545be6d773fc5b8b0c1a1a65b506117b36ce6c3 /bdb/ecdsa.c
parent38f135e83e1d213fde64ac32bd366339f32f29fa (diff)
downloadvboot-34abb32ed2e48ccad95320c37fb001df8e3442fd.tar.gz
vboot: remove Boot Descriptor Block (BDB) library and utilities
Remove unused BDB code, previously created for a cancelled SoC project. BUG=b:124141368, chromium:986177 TEST=make clean && make runtests BRANCH=none Change-Id: I91faf97d9850f8afb816fa324ad9a4d9f3842888 Signed-off-by: Joel Kitching <kitching@google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/1710336 Tested-by: Joel Kitching <kitching@chromium.org> Reviewed-by: Joel Kitching <kitching@chromium.org> Commit-Queue: Joel Kitching <kitching@chromium.org>
Diffstat (limited to 'bdb/ecdsa.c')
-rw-r--r--bdb/ecdsa.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/bdb/ecdsa.c b/bdb/ecdsa.c
deleted file mode 100644
index f4d17287..00000000
--- a/bdb/ecdsa.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Copyright (c) 2015 The Chromium OS Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- *
- * Boot descriptor block firmware ECDSA stub
- */
-
-#include <string.h>
-#include "bdb.h"
-
-int bdb_ecdsa521_verify(const uint8_t *key_data,
- const uint8_t *sig,
- const uint8_t *digest)
-{
- /* This is just a stub */
- return BDB_ERROR_DIGEST;
-}