summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2023-06-25 19:26:04 +0000
committertb <>2023-06-25 19:26:04 +0000
commitc311eaf37cbfab9001738c1e4a69046cf9e623c7 (patch)
treed0c1ead75b62cca0e1dbce88d0514ebbb5abd010 /src
parent24b1bd6b208a24ebdadab837baf9d76829c7d4c4 (diff)
downloadopenbsd-c311eaf37cbfab9001738c1e4a69046cf9e623c7.tar.gz
openbsd-c311eaf37cbfab9001738c1e4a69046cf9e623c7.tar.bz2
openbsd-c311eaf37cbfab9001738c1e4a69046cf9e623c7.zip
Stop including ech_local.h
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/ec/ec_pmeth.c3
-rw-r--r--src/lib/libcrypto/ecdh/ecdh_kdf.c3
-rw-r--r--src/lib/libcrypto/ecdh/ech_key.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/ec/ec_pmeth.c b/src/lib/libcrypto/ec/ec_pmeth.c
index d1bb52d9ed..7c94f80c7f 100644
--- a/src/lib/libcrypto/ec/ec_pmeth.c
+++ b/src/lib/libcrypto/ec/ec_pmeth.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec_pmeth.c,v 1.17 2023/04/25 15:48:48 tb Exp $ */ 1/* $OpenBSD: ec_pmeth.c,v 1.18 2023/06/25 19:26:04 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 2006. 3 * project 2006.
4 */ 4 */
@@ -68,7 +68,6 @@
68 68
69#include "bn_local.h" 69#include "bn_local.h"
70#include "ec_local.h" 70#include "ec_local.h"
71#include "ech_local.h"
72#include "evp_local.h" 71#include "evp_local.h"
73 72
74/* EC pkey context structure */ 73/* EC pkey context structure */
diff --git a/src/lib/libcrypto/ecdh/ecdh_kdf.c b/src/lib/libcrypto/ecdh/ecdh_kdf.c
index 5c22e9c8ea..bcd718c47b 100644
--- a/src/lib/libcrypto/ecdh/ecdh_kdf.c
+++ b/src/lib/libcrypto/ecdh/ecdh_kdf.c
@@ -52,10 +52,11 @@
52 52
53#include <string.h> 53#include <string.h>
54 54
55#include <openssl/ecdh.h>
55#include <openssl/ec.h> 56#include <openssl/ec.h>
56#include <openssl/evp.h> 57#include <openssl/evp.h>
57 58
58#include "ech_local.h" 59#include "ec_local.h"
59 60
60/* 61/*
61 * Key derivation function from X9.63/SECG. 62 * Key derivation function from X9.63/SECG.
diff --git a/src/lib/libcrypto/ecdh/ech_key.c b/src/lib/libcrypto/ecdh/ech_key.c
index 208a4b328e..aa831f2b87 100644
--- a/src/lib/libcrypto/ecdh/ech_key.c
+++ b/src/lib/libcrypto/ecdh/ech_key.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ech_key.c,v 1.17 2023/06/25 19:17:43 tb Exp $ */ 1/* $OpenBSD: ech_key.c,v 1.18 2023/06/25 19:26:04 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. 3 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
4 * 4 *
@@ -73,12 +73,12 @@
73#include <openssl/opensslconf.h> 73#include <openssl/opensslconf.h>
74 74
75#include <openssl/bn.h> 75#include <openssl/bn.h>
76#include <openssl/ecdh.h>
76#include <openssl/err.h> 77#include <openssl/err.h>
77#include <openssl/objects.h> 78#include <openssl/objects.h>
78#include <openssl/sha.h> 79#include <openssl/sha.h>
79 80
80#include "bn_local.h" 81#include "bn_local.h"
81#include "ech_local.h"
82#include "ec_local.h" 82#include "ec_local.h"
83 83
84/* 84/*