summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ec/ec_lib.c
diff options
context:
space:
mode:
authortb <>2018-11-06 07:02:33 +0000
committertb <>2018-11-06 07:02:33 +0000
commit63569101089cbba78ffa6d2b7ab83e719262f5f0 (patch)
tree1f596901d57af99b215ca32a39768fc112724428 /src/lib/libcrypto/ec/ec_lib.c
parent8920ada6f077f74fa71612e7cab28a0a06089296 (diff)
downloadopenbsd-63569101089cbba78ffa6d2b7ab83e719262f5f0.tar.gz
openbsd-63569101089cbba78ffa6d2b7ab83e719262f5f0.tar.bz2
openbsd-63569101089cbba78ffa6d2b7ab83e719262f5f0.zip
unrevert the use of bn_rand_interval().
ok beck jsing
Diffstat (limited to 'src/lib/libcrypto/ec/ec_lib.c')
-rw-r--r--src/lib/libcrypto/ec/ec_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ec/ec_lib.c b/src/lib/libcrypto/ec/ec_lib.c
index bf2f652fc7..e5d9620a00 100644
--- a/src/lib/libcrypto/ec/ec_lib.c
+++ b/src/lib/libcrypto/ec/ec_lib.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec_lib.c,v 1.30 2018/11/05 20:18:21 tb Exp $ */ 1/* $OpenBSD: ec_lib.c,v 1.31 2018/11/06 07:02:33 tb Exp $ */
2/* 2/*
3 * Originally written by Bodo Moeller for the OpenSSL project. 3 * Originally written by Bodo Moeller for the OpenSSL project.
4 */ 4 */
@@ -547,7 +547,7 @@ ec_point_blind_coordinates(const EC_GROUP *group, EC_POINT *p, BN_CTX *ctx)
547{ 547{
548 if (group->meth->blind_coordinates == NULL) 548 if (group->meth->blind_coordinates == NULL)
549 return 1; 549 return 1;
550 550
551 return group->meth->blind_coordinates(group, p, ctx); 551 return group->meth->blind_coordinates(group, p, ctx);
552} 552}
553 553