summaryrefslogtreecommitdiff
path: root/src/contrib/crypt
diff options
context:
space:
mode:
Diffstat (limited to 'src/contrib/crypt')
-rw-r--r--src/contrib/crypt/md5.cpp2
-rw-r--r--src/contrib/crypt/md5.h2
-rw-r--r--src/contrib/crypt/md5crypt.cpp12
3 files changed, 8 insertions, 8 deletions
diff --git a/src/contrib/crypt/md5.cpp b/src/contrib/crypt/md5.cpp
index 390c42d..492f8b6 100644
--- a/src/contrib/crypt/md5.cpp
+++ b/src/contrib/crypt/md5.cpp
@@ -1,7 +1,7 @@
/*:*
*: File: ./src/contrib/crypt/md5.cpp
*:
- *: yChat; Homepage: www.yChat.org; Version 0.7.9.5-RELEASE
+ *: yChat; Homepage: www.yChat.org; Version 0.8.3-CURRENT
*:
*: Copyright (C) 2003 Paul C. Buetow, Volker Richter
*: Copyright (C) 2004 Paul C. Buetow
diff --git a/src/contrib/crypt/md5.h b/src/contrib/crypt/md5.h
index 49bbd94..0681ef4 100644
--- a/src/contrib/crypt/md5.h
+++ b/src/contrib/crypt/md5.h
@@ -1,7 +1,7 @@
/*:*
*: File: ./src/contrib/crypt/md5.h
*:
- *: yChat; Homepage: www.yChat.org; Version 0.7.9.5-RELEASE
+ *: yChat; Homepage: www.yChat.org; Version 0.8.3-CURRENT
*:
*: Copyright (C) 2003 Paul C. Buetow, Volker Richter
*: Copyright (C) 2004 Paul C. Buetow
diff --git a/src/contrib/crypt/md5crypt.cpp b/src/contrib/crypt/md5crypt.cpp
index 39aa4dd..90606f1 100644
--- a/src/contrib/crypt/md5crypt.cpp
+++ b/src/contrib/crypt/md5crypt.cpp
@@ -1,7 +1,7 @@
/*:*
*: File: ./src/contrib/crypt/md5crypt.cpp
*:
- *: yChat; Homepage: www.yChat.org; Version 0.7.9.5-RELEASE
+ *: yChat; Homepage: www.yChat.org; Version 0.8.3-CURRENT
*:
*: Copyright (C) 2003 Paul C. Buetow, Volker Richter
*: Copyright (C) 2004 Paul C. Buetow
@@ -66,11 +66,11 @@ char *
MD5Crypt(const char *pw, const char *salt)
{
static char *magic = "$1$"; /*
- * This string is magic for
- * this algorithm. Having
- * it this way, we can get
- * get better later on
- */
+ * This string is magic for
+ * this algorithm. Having
+ * it this way, we can get
+ * get better later on
+ */
static char passwd[120], *p;
static const char *sp,*ep;
unsigned char final[16];