diff options
| author | tb <> | 2026-06-08 11:38:04 +0000 |
|---|---|---|
| committer | tb <> | 2026-06-08 11:38:04 +0000 |
| commit | baa9a5c738f68f3c75ae79a408cabd4e9ea2d12c (patch) | |
| tree | e3b4a1d8acc0622b9493cd5322db2774b4e8e3af /src/lib/libssl/ssl_local.h | |
| parent | 1091a3721fde40f0f1c76e8cef8455c495204356 (diff) | |
| download | openbsd-baa9a5c738f68f3c75ae79a408cabd4e9ea2d12c.tar.gz openbsd-baa9a5c738f68f3c75ae79a408cabd4e9ea2d12c.tar.bz2 openbsd-baa9a5c738f68f3c75ae79a408cabd4e9ea2d12c.zip | |
Add a decode_error argument to ssl_kex_peer_public_ecdhe_ecp()
ok jsing kenjiro
Diffstat (limited to 'src/lib/libssl/ssl_local.h')
| -rw-r--r-- | src/lib/libssl/ssl_local.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_local.h b/src/lib/libssl/ssl_local.h index 95913f81a6..9999d55963 100644 --- a/src/lib/libssl/ssl_local.h +++ b/src/lib/libssl/ssl_local.h | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: ssl_local.h,v 1.41 2026/06/06 15:08:15 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_local.h,v 1.42 2026/06/08 11:38:04 tb Exp $ */ |
| 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 3 | * All rights reserved. | 3 | * All rights reserved. |
| 4 | * | 4 | * |
| @@ -1336,7 +1336,8 @@ int ssl_kex_derive_dhe(DH *dh, DH *dh_peer, | |||
| 1336 | int ssl_kex_dummy_ecdhe_x25519(EVP_PKEY *pkey); | 1336 | int ssl_kex_dummy_ecdhe_x25519(EVP_PKEY *pkey); |
| 1337 | int ssl_kex_generate_ecdhe_ecp(EC_KEY *ecdh, int nid); | 1337 | int ssl_kex_generate_ecdhe_ecp(EC_KEY *ecdh, int nid); |
| 1338 | int ssl_kex_public_ecdhe_ecp(EC_KEY *ecdh, CBB *cbb); | 1338 | int ssl_kex_public_ecdhe_ecp(EC_KEY *ecdh, CBB *cbb); |
| 1339 | int ssl_kex_peer_public_ecdhe_ecp(EC_KEY *ecdh, int nid, CBS *cbs); | 1339 | int ssl_kex_peer_public_ecdhe_ecp(EC_KEY *ecdh, int nid, CBS *cbs, |
| 1340 | int *decode_error); | ||
| 1340 | int ssl_kex_derive_ecdhe_ecp(EC_KEY *ecdh, EC_KEY *ecdh_peer, | 1341 | int ssl_kex_derive_ecdhe_ecp(EC_KEY *ecdh, EC_KEY *ecdh_peer, |
| 1341 | uint8_t **shared_key, size_t *shared_key_len); | 1342 | uint8_t **shared_key, size_t *shared_key_len); |
| 1342 | 1343 | ||
