Displaying 2 results from an estimated 2 matches for "passdb_credentials_digest_md5".
2004 May 13
2
using one-time passwords
Hi,
Is there any way to use something like OPIE (one-time passwords in
everything, S/KEY) with dovecot?
Here's what I want to do ultimately:
 * have an AUTH=XYZ method that relies on S/KEY as provided by the
   libpam-opie module (well, maybe not through pam)
 * have dovecot advertise authentication as follows:
   - local               : PLAIN, XYZ
   - remote (encrypted)  : EXTERNAL, and
2004 Aug 09
1
[PATCH] RPA authentication mechanism
...nilla/src/auth/passdb.h dovecot-1.0-test32/src/auth/passdb.h
--- dovecot-1.0-test32.vanilla/src/auth/passdb.h	2004-07-30 05:40:29.000000000 +0400
+++ dovecot-1.0-test32/src/auth/passdb.h	2004-08-07 22:35:50.000000000 +0400
@@ -14,7 +14,8 @@ enum passdb_credentials {
 	PASSDB_CREDENTIALS_CRAM_MD5,
 	PASSDB_CREDENTIALS_DIGEST_MD5,
 	PASSDB_CREDENTIALS_LANMAN,
-	PASSDB_CREDENTIALS_NTLM
+	PASSDB_CREDENTIALS_NTLM,
+	PASSDB_CREDENTIALS_RPA
 };
 
 enum passdb_result {
diff -urpNX /usr/share/dontdiff dovecot-1.0-test32.vanilla/src/auth/password-scheme.c dovecot-1.0-test32/src/auth/password-scheme.c
--- dovecot-1.0-test32.vanilla/...