summaryrefslogtreecommitdiffstats
path: root/support/passwd_common.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 13:42:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 13:42:58 +0000
commit678fe256b3133f41132119e7ecd2f3ceae8b67e6 (patch)
tree5941bbb318e538945db26bbb1cbe3147cfd137c4 /support/passwd_common.h
parentAdding debian version 2.4.57-2. (diff)
downloadapache2-678fe256b3133f41132119e7ecd2f3ceae8b67e6.tar.xz
apache2-678fe256b3133f41132119e7ecd2f3ceae8b67e6.zip
Merging upstream version 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.h8
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,