Displaying 4 results from an estimated 4 matches for "mech_digest_md5".
2007 May 22
1
[PATCH] add some const's
...90 -r a486a946dfa1 src/auth/mech-digest-md5.c
--- a/src/auth/mech-digest-md5.c Tue May 22 03:58:32 2007 +0300
+++ b/src/auth/mech-digest-md5.c Tue May 22 09:47:45 2007 +0400
@@ -601,7 +601,7 @@ static struct auth_request *mech_digest_
return &request->auth_request;
}
-struct mech_module mech_digest_md5 = {
+const struct mech_module mech_digest_md5 = {
"DIGEST-MD5",
MEMBER(flags) MECH_SEC_DICTIONARY | MECH_SEC_ACTIVE |
diff -r e1b3043c0d90 -r a486a946dfa1 src/auth/mech-plain.c
--- a/src/auth/mech-plain.c Tue May 22 03:58:32 2007 +0300
+++ b/src/auth/mech-plain.c Tue May 22 09:47:45...
2004 Jul 22
1
[PATCH] add LOGIN authentication mechanism
.../auth/mech.c 2004-07-22 10:36:26.000000000 +0400
@@ -384,6 +384,7 @@ static void auth_failure_timeout(void *c
}
extern struct mech_module mech_plain;
+extern struct mech_module mech_login;
extern struct mech_module mech_apop;
extern struct mech_module mech_cram_md5;
extern struct mech_module mech_digest_md5;
@@ -412,6 +413,8 @@ void mech_init(void)
while (*mechanisms != NULL) {
if (strcasecmp(*mechanisms, "PLAIN") == 0)
mech_register_module(&mech_plain);
+ else if (strcasecmp(*mechanisms, "LOGIN") == 0)
+ mech_register_module(&mech_login);
else if (strcasecmp...
2004 Aug 09
1
[PATCH] RPA authentication mechanism
...src/auth/mech.c
--- dovecot-1.0-test32.vanilla/src/auth/mech.c 2004-07-28 19:07:13.000000000 +0400
+++ dovecot-1.0-test32/src/auth/mech.c 2004-07-30 21:17:33.000000000 +0400
@@ -389,6 +389,7 @@ extern struct mech_module mech_apop;
extern struct mech_module mech_cram_md5;
extern struct mech_module mech_digest_md5;
extern struct mech_module mech_ntlm;
+extern struct mech_module mech_rpa;
extern struct mech_module mech_anonymous;
void mech_init(void)
@@ -424,6 +425,8 @@ void mech_init(void)
mech_register_module(&mech_digest_md5);
else if (strcasecmp(*mechanisms, "NTLM") == 0)
mec...
2004 Jul 01
3
[PATCH, RFC] add APOP authentication mechanism
...000000 +0400
+++ dovecot-1.0-test23/src/auth/mech.c 2004-07-01 11:38:33.000000000 +0400
@@ -384,6 +384,7 @@ static void auth_failure_timeout(void *c
}
extern struct mech_module mech_plain;
+extern struct mech_module mech_apop;
extern struct mech_module mech_cram_md5;
extern struct mech_module mech_digest_md5;
extern struct mech_module mech_anonymous;
@@ -411,6 +412,8 @@ void mech_init(void)
while (*mechanisms != NULL) {
if (strcasecmp(*mechanisms, "PLAIN") == 0)
mech_register_module(&mech_plain);
+ else if (strcasecmp(*mechanisms, "APOP") == 0)
+ mech_register_modul...