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 /tests | |
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 'tests')
-rw-r--r-- | tests/vb2_rsa_utility_tests.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/vb2_rsa_utility_tests.c b/tests/vb2_rsa_utility_tests.c index cc856e88..4ad5a95b 100644 --- a/tests/vb2_rsa_utility_tests.c +++ b/tests/vb2_rsa_utility_tests.c @@ -8,6 +8,7 @@ #include "2common.h" #include "2rsa.h" +#include "2rsa_private.h" #include "2sysincludes.h" #include "file_keys.h" #include "rsa_padding_test.h" |