summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp
diff options
context:
space:
mode:
authortb <>2024-03-02 10:17:37 +0000
committertb <>2024-03-02 10:17:37 +0000
commit4083f4c7fda85159558b8c05200130506dc51c45 (patch)
tree4111116bc9b99272485abcc1794b98f58991ba5f /src/lib/libcrypto/evp
parent3660b6a445c7a10167a56fab6d7e882cdf782d91 (diff)
downloadopenbsd-4083f4c7fda85159558b8c05200130506dc51c45.tar.gz
openbsd-4083f4c7fda85159558b8c05200130506dc51c45.tar.bz2
openbsd-4083f4c7fda85159558b8c05200130506dc51c45.zip
Remove most PBEPARAM stuff from public visibility
The struct itself needs to remain public, unfortunately. ok jsing
Diffstat (limited to 'src/lib/libcrypto/evp')
-rw-r--r--src/lib/libcrypto/evp/evp_pbe.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/evp_pbe.c b/src/lib/libcrypto/evp/evp_pbe.c
index 3f1f1ec9a4..a9f5b8fb12 100644
--- a/src/lib/libcrypto/evp/evp_pbe.c
+++ b/src/lib/libcrypto/evp/evp_pbe.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: evp_pbe.c,v 1.44 2024/03/02 10:15:15 tb Exp $ */ 1/* $OpenBSD: evp_pbe.c,v 1.45 2024/03/02 10:17:37 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 1999. 3 * project 1999.
4 */ 4 */
@@ -70,6 +70,7 @@
70#include "evp_local.h" 70#include "evp_local.h"
71#include "hmac_local.h" 71#include "hmac_local.h"
72#include "pkcs12_local.h" 72#include "pkcs12_local.h"
73#include "x509_local.h"
73 74
74/* Password based encryption (PBE) functions */ 75/* Password based encryption (PBE) functions */
75int PKCS12_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, 76int PKCS12_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,