diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-12 08:32:04 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-12 08:32:04 +0000 |
commit | 38b8cc5b85b12b9a943ddc2ee98822aa6c69a460 (patch) | |
tree | fdeb0b5ff80273f95ce61607fc3613dff0b9a235 /support/passwd_common.h | |
parent | Adding upstream version 2.4.58. (diff) | |
download | apache2-38b8cc5b85b12b9a943ddc2ee98822aa6c69a460.tar.xz apache2-38b8cc5b85b12b9a943ddc2ee98822aa6c69a460.zip |
Adding upstream version 2.4.59.upstream/2.4.59
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'support/passwd_common.h')
-rw-r--r-- | support/passwd_common.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/support/passwd_common.h b/support/passwd_common.h index 660081e..874c5e7 100644 --- a/support/passwd_common.h +++ b/support/passwd_common.h @@ -28,6 +28,10 @@ #include "apu_version.h" #endif +#if !defined(WIN32) && !defined(NETWARE) +#include "ap_config_auto.h" +#endif + #define MAX_STRING_LEN 256 #define ALG_PLAIN 0 @@ -35,6 +39,8 @@ #define ALG_APMD5 2 #define ALG_APSHA 3 #define ALG_BCRYPT 4 +#define ALG_CRYPT_SHA256 5 +#define ALG_CRYPT_SHA512 6 #define BCRYPT_DEFAULT_COST 5 @@ -84,7 +90,7 @@ struct passwd_ctx { apr_size_t out_len; char *passwd; int alg; - int cost; + int cost; /* cost for bcrypt, rounds for SHA-2 */ enum { PW_PROMPT = 0, PW_ARG, |