diff options
author | tb <> | 2023-04-25 19:26:45 +0000 |
---|---|---|
committer | tb <> | 2023-04-25 19:26:45 +0000 |
commit | d450bc3bc87081cdb0f831c070906e9ecf5fd137 (patch) | |
tree | a3af15f664ba745ec6f1dd24bd78b427fee17458 /src/lib/libcrypto/ecdsa/ecs_lib.c | |
parent | 67debf20de785e46126aa900cfe4c5d7fd9ca7d8 (diff) | |
download | openbsd-d450bc3bc87081cdb0f831c070906e9ecf5fd137.tar.gz openbsd-d450bc3bc87081cdb0f831c070906e9ecf5fd137.tar.bz2 openbsd-d450bc3bc87081cdb0f831c070906e9ecf5fd137.zip |
Move EC_KEY_{insert,set}_key_method_data() to internal-only
Diffstat (limited to 'src/lib/libcrypto/ecdsa/ecs_lib.c')
-rw-r--r-- | src/lib/libcrypto/ecdsa/ecs_lib.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ecdsa/ecs_lib.c b/src/lib/libcrypto/ecdsa/ecs_lib.c index 5c44c793ed..9a35a030db 100644 --- a/src/lib/libcrypto/ecdsa/ecs_lib.c +++ b/src/lib/libcrypto/ecdsa/ecs_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecs_lib.c,v 1.16 2023/03/07 09:27:10 jsing Exp $ */ | 1 | /* $OpenBSD: ecs_lib.c,v 1.17 2023/04/25 19:26:45 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -57,13 +57,15 @@ | |||
57 | 57 | ||
58 | #include <openssl/opensslconf.h> | 58 | #include <openssl/opensslconf.h> |
59 | 59 | ||
60 | #include "ecs_local.h" | ||
61 | #ifndef OPENSSL_NO_ENGINE | 60 | #ifndef OPENSSL_NO_ENGINE |
62 | #include <openssl/engine.h> | 61 | #include <openssl/engine.h> |
63 | #endif | 62 | #endif |
64 | #include <openssl/err.h> | 63 | #include <openssl/err.h> |
65 | #include <openssl/bn.h> | 64 | #include <openssl/bn.h> |
66 | 65 | ||
66 | #include "ec_local.h" | ||
67 | #include "ecs_local.h" | ||
68 | |||
67 | static const ECDSA_METHOD *default_ECDSA_method = NULL; | 69 | static const ECDSA_METHOD *default_ECDSA_method = NULL; |
68 | 70 | ||
69 | static void *ecdsa_data_new(void); | 71 | static void *ecdsa_data_new(void); |