summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-10-31 05:47:37 +0000
committertb <>2024-10-31 05:47:37 +0000
commit88f9511e2c9117d0faf1b852ec3ddb362c212115 (patch)
tree65fa6a664ae84a8cd5b16d430c4123a9d170d32b /src
parent5902169fca3f77e8990a326628063ffd24ee2db1 (diff)
downloadopenbsd-88f9511e2c9117d0faf1b852ec3ddb362c212115.tar.gz
openbsd-88f9511e2c9117d0faf1b852ec3ddb362c212115.tar.bz2
openbsd-88f9511e2c9117d0faf1b852ec3ddb362c212115.zip
ecp_oct.c no longer needs bytestring and stdint
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/ec/ecp_oct.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libcrypto/ec/ecp_oct.c b/src/lib/libcrypto/ec/ecp_oct.c
index 0f4d8cb551..6daab41870 100644
--- a/src/lib/libcrypto/ec/ecp_oct.c
+++ b/src/lib/libcrypto/ec/ecp_oct.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ecp_oct.c,v 1.30 2024/10/30 18:16:34 tb Exp $ */ 1/* $OpenBSD: ecp_oct.c,v 1.31 2024/10/31 05:47:37 tb Exp $ */
2/* Includes code written by Lenka Fibikova <fibikova@exp-math.uni-essen.de> 2/* Includes code written by Lenka Fibikova <fibikova@exp-math.uni-essen.de>
3 * for the OpenSSL project. 3 * for the OpenSSL project.
4 * Includes code written by Bodo Moeller for the OpenSSL project. 4 * Includes code written by Bodo Moeller for the OpenSSL project.
@@ -63,7 +63,6 @@
63 */ 63 */
64 64
65#include <stddef.h> 65#include <stddef.h>
66#include <stdint.h>
67 66
68#include <openssl/bn.h> 67#include <openssl/bn.h>
69#include <openssl/ec.h> 68#include <openssl/ec.h>
@@ -71,8 +70,6 @@
71 70
72#include "ec_local.h" 71#include "ec_local.h"
73 72
74#include "bytestring.h"
75
76int 73int
77ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, 74ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group,
78 EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) 75 EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx)