diff options
| author | tb <> | 2024-10-31 05:47:37 +0000 |
|---|---|---|
| committer | tb <> | 2024-10-31 05:47:37 +0000 |
| commit | 1da099aa8e9b1e0f3315f2fc60efd7fbd55da640 (patch) | |
| tree | 65fa6a664ae84a8cd5b16d430c4123a9d170d32b /src/lib/libcrypto/ec/ecp_oct.c | |
| parent | d930ebf909a342f1f83e888c9560947e6e9bccf1 (diff) | |
| download | openbsd-1da099aa8e9b1e0f3315f2fc60efd7fbd55da640.tar.gz openbsd-1da099aa8e9b1e0f3315f2fc60efd7fbd55da640.tar.bz2 openbsd-1da099aa8e9b1e0f3315f2fc60efd7fbd55da640.zip | |
ecp_oct.c no longer needs bytestring and stdint
Diffstat (limited to 'src/lib/libcrypto/ec/ecp_oct.c')
| -rw-r--r-- | src/lib/libcrypto/ec/ecp_oct.c | 5 |
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 | |||
| 76 | int | 73 | int |
| 77 | ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, | 74 | ec_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) |
