summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/evp_pbe.c
diff options
context:
space:
mode:
authortb <>2024-03-02 10:17:37 +0000
committertb <>2024-03-02 10:17:37 +0000
commitfdfad9e1701882b4e72b41155a9c8e4ef338ddbf (patch)
tree4111116bc9b99272485abcc1794b98f58991ba5f /src/lib/libcrypto/evp/evp_pbe.c
parentb88286b09abf67a2644f5e950fb27492f55b3b3e (diff)
downloadopenbsd-fdfad9e1701882b4e72b41155a9c8e4ef338ddbf.tar.gz
openbsd-fdfad9e1701882b4e72b41155a9c8e4ef338ddbf.tar.bz2
openbsd-fdfad9e1701882b4e72b41155a9c8e4ef338ddbf.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/evp_pbe.c')
-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,