diff options
author | Shane Lontis <shane.lontis@oracle.com> | 2021-03-09 06:26:17 +0100 |
---|---|---|
committer | Shane Lontis <shane.lontis@oracle.com> | 2021-03-18 08:52:38 +0100 |
commit | c8830891e6cb8d0782986662ca50b8fa7c97f49f (patch) | |
tree | af20cb71778e85265c8aa2adb004907b5e0be3a3 /test/curve448_internal_test.c | |
parent | Rename CMS_si_check_attributes to ossl_cms_si_check_attributes (diff) | |
download | openssl-c8830891e6cb8d0782986662ca50b8fa7c97f49f.tar.xz openssl-c8830891e6cb8d0782986662ca50b8fa7c97f49f.zip |
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.c | 16 |
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; |