diff options
author | tb <> | 2023-07-05 08:39:40 +0000 |
---|---|---|
committer | tb <> | 2023-07-05 08:39:40 +0000 |
commit | 788b0a1692618872b1e6c2f13445dbf7721f7c02 (patch) | |
tree | 3d68ee8afc0bc37ca16d301401e781acf405b6a6 /src/lib/libcrypto/ecdh/ech_lib.c | |
parent | 9d190ec0e534650cdc84b1cd4b55351f19456cbe (diff) | |
download | openbsd-788b0a1692618872b1e6c2f13445dbf7721f7c02.tar.gz openbsd-788b0a1692618872b1e6c2f13445dbf7721f7c02.tar.bz2 openbsd-788b0a1692618872b1e6c2f13445dbf7721f7c02.zip |
Drop useless ossl_ prefixes
discussed with jsing
Diffstat (limited to 'src/lib/libcrypto/ecdh/ech_lib.c')
-rw-r--r-- | src/lib/libcrypto/ecdh/ech_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ecdh/ech_lib.c b/src/lib/libcrypto/ecdh/ech_lib.c index eb1b6bfebc..52019b01c1 100644 --- a/src/lib/libcrypto/ecdh/ech_lib.c +++ b/src/lib/libcrypto/ecdh/ech_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ech_lib.c,v 1.22 2023/06/25 19:17:43 tb Exp $ */ | 1 | /* $OpenBSD: ech_lib.c,v 1.23 2023/07/05 08:39:40 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. | 3 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. |
4 | * | 4 | * |
@@ -90,7 +90,7 @@ static const ECDH_METHOD *default_ECDH_method = NULL; | |||
90 | 90 | ||
91 | static const ECDH_METHOD openssl_ecdh_meth = { | 91 | static const ECDH_METHOD openssl_ecdh_meth = { |
92 | .name = "OpenSSL ECDH method", | 92 | .name = "OpenSSL ECDH method", |
93 | .compute_key = ossl_ecdh_compute_key, | 93 | .compute_key = ecdh_compute_key, |
94 | }; | 94 | }; |
95 | 95 | ||
96 | const ECDH_METHOD * | 96 | const ECDH_METHOD * |