diff options
author | Joel Kitching <kitching@google.com> | 2021-01-20 17:22:02 +0800 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2021-01-28 03:52:08 +0000 |
commit | 3a525ff3af462ec2c20b3f7a25c0cfbb1ef8ab57 (patch) | |
tree | a71c64b522df37b1d0ab2c1e0a5d05e59c615bb2 /firmware/2lib/2rsa.c | |
parent | d21cae0b23e206eef336136b23752b2653e58229 (diff) | |
download | vboot-3a525ff3af462ec2c20b3f7a25c0cfbb1ef8ab57.tar.gz |
vboot: relocate private RSA function headers
Previously, functions that need to be tested but not exposed
to vboot API were placed in vboot_test.h. Now, the approach
of placing them in a xyz_private.h header file is preferred.
BUG=b:124141368, chromium:968464
TEST=make clean && make runtests
BRANCH=none
Signed-off-by: Joel Kitching <kitching@google.com>
Change-Id: I8be50d95c533b277b509aabb503ae05f69662a33
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/2641344
Tested-by: Joel Kitching <kitching@chromium.org>
Commit-Queue: Joel Kitching <kitching@chromium.org>
Reviewed-by: Yu-Ping Wu <yupingso@chromium.org>
Diffstat (limited to 'firmware/2lib/2rsa.c')
-rw-r--r-- | firmware/2lib/2rsa.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/2lib/2rsa.c b/firmware/2lib/2rsa.c index 962558df..dcd8bad0 100644 --- a/firmware/2lib/2rsa.c +++ b/firmware/2lib/2rsa.c @@ -11,6 +11,7 @@ #include "2common.h" #include "2rsa.h" +#include "2rsa_private.h" #include "2sha.h" #include "2sysincludes.h" #include "vboot_test.h" |