aboutsummaryrefslogtreecommitdiffstats
path: root/test/ecdhtest.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/ecdhtest.c')
-rw-r--r--test/ecdhtest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ecdhtest.c b/test/ecdhtest.c
index a89177e435..5c451e52be 100644
--- a/test/ecdhtest.c
+++ b/test/ecdhtest.c
@@ -201,7 +201,7 @@ static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out)
# endif
alen = KDF1_SHA1_len;
- abuf = (unsigned char *)OPENSSL_malloc(alen);
+ abuf = OPENSSL_malloc(alen);
aout =
ECDH_compute_key(abuf, alen, EC_KEY_get0_public_key(b), a, KDF1_SHA1);
@@ -218,7 +218,7 @@ static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out)
# endif
blen = KDF1_SHA1_len;
- bbuf = (unsigned char *)OPENSSL_malloc(blen);
+ bbuf = OPENSSL_malloc(blen);
bout =
ECDH_compute_key(bbuf, blen, EC_KEY_get0_public_key(a), b, KDF1_SHA1);