summaryrefslogtreecommitdiffstats
path: root/test/curve448_internal_test.c
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2021-03-09 15:26:17 +1000
committerShane Lontis <shane.lontis@oracle.com>2021-03-18 17:52:38 +1000
commitc8830891e6cb8d0782986662ca50b8fa7c97f49f (patch)
treeaf20cb71778e85265c8aa2adb004907b5e0be3a3 /test/curve448_internal_test.c
parent3022b7f40407aa9d50d1e4193e22a092b23c7717 (diff)
Add ossl_provider symbols
Partial fix for #12964 Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14473)
Diffstat (limited to 'test/curve448_internal_test.c')
-rw-r--r--test/curve448_internal_test.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/test/curve448_internal_test.c b/test/curve448_internal_test.c
index 561ab71e8f..bcf3f87389 100644
--- a/test/curve448_internal_test.c
+++ b/test/curve448_internal_test.c
@@ -629,14 +629,16 @@ static int test_ed448(void)
|| !TEST_true(ossl_ed448_sign(NULL, outsig, msg9, sizeof(msg9),
pubkey9, privkey9, NULL, 0, NULL))
|| !TEST_int_eq(memcmp(sig9, outsig, sizeof(sig9)), 0)
- || !TEST_true(ossl_ed448ph_sign(NULL, outsig, dohash(hashctx, phmsg1,
- sizeof(phmsg1)), phpubkey1,
- phprivkey1, NULL, 0, NULL))
+ || !TEST_true(ossl_ed448ph_sign(NULL, outsig,
+ dohash(hashctx, phmsg1,
+ sizeof(phmsg1)), phpubkey1,
+ phprivkey1, NULL, 0, NULL))
|| !TEST_int_eq(memcmp(phsig1, outsig, sizeof(phsig1)), 0)
- || !TEST_true(ossl_ed448ph_sign(NULL, outsig, dohash(hashctx, phmsg2,
- sizeof(phmsg2)), phpubkey2,
- phprivkey2, phcontext2,
- sizeof(phcontext2), NULL))
+ || !TEST_true(ossl_ed448ph_sign(NULL, outsig,
+ dohash(hashctx, phmsg2,
+ sizeof(phmsg2)), phpubkey2,
+ phprivkey2, phcontext2,
+ sizeof(phcontext2), NULL))
|| !TEST_int_eq(memcmp(phsig2, outsig, sizeof(phsig2)), 0)) {
EVP_MD_CTX_free(hashctx);
return 0;