summaryrefslogtreecommitdiffabout
path: root/gammu/emb/common/misc/coding/md5.c
authorzautrix <zautrix>2004-10-05 11:13:51 (UTC)
committer zautrix <zautrix>2004-10-05 11:13:51 (UTC)
commit50ab40e1e02ad7c65c17a78d08116a808b1257aa (patch) (unidiff)
tree0d1939e2297fa7bbd8e1f2030f154463854164c6 /gammu/emb/common/misc/coding/md5.c
parentcf8616f64f20e5448d4ff644f7cc15750cf3f85f (diff)
downloadkdepimpi-50ab40e1e02ad7c65c17a78d08116a808b1257aa.zip
kdepimpi-50ab40e1e02ad7c65c17a78d08116a808b1257aa.tar.gz
kdepimpi-50ab40e1e02ad7c65c17a78d08116a808b1257aa.tar.bz2
updated to latest gammu version
Diffstat (limited to 'gammu/emb/common/misc/coding/md5.c') (more/less context) (ignore whitespace changes)
-rw-r--r--gammu/emb/common/misc/coding/md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gammu/emb/common/misc/coding/md5.c b/gammu/emb/common/misc/coding/md5.c
index 30fe33f..abb61be 100644
--- a/gammu/emb/common/misc/coding/md5.c
+++ b/gammu/emb/common/misc/coding/md5.c
@@ -1,49 +1,49 @@
1/* Taken from ReHash (see http://www.reichlsoft.de.vu/) and released 1/* Taken from ReHash (www.reichlsoft.de.vu) and released
2 * under GPL/LGPL with permission from ReHash author 2 * under GPL/LGPL with permission from ReHash author
3 * Dominik Reichl <dominik.reichl@t-online.de>, Germany 3 * Dominik Reichl <dominik.reichl@t-online.de>, Germany
4 */ 4 */
5 5
6/* 6/*
7 ********************************************************************** 7 **********************************************************************
8 ** MD5.cpp ** 8 ** MD5.cpp **
9 ** ** 9 ** **
10 ** - Style modified by Tony Ray, January 2001 ** 10 ** - Style modified by Tony Ray, January 2001 **
11 ** Added support for randomizing initialization constants ** 11 ** Added support for randomizing initialization constants **
12 ** - Style modified by Dominik Reichl, April 2003 ** 12 ** - Style modified by Dominik Reichl, April 2003 **
13 ** Optimized code ** 13 ** Optimized code **
14 ** ** 14 ** **
15 ** MD5.c ** 15 ** MD5.c **
16 ** RSA Data Security, Inc. MD5 Message Digest Algorithm ** 16 ** RSA Data Security, Inc. MD5 Message Digest Algorithm **
17 ** Created: 2/17/90 RLR ** 17 ** Created: 2/17/90 RLR **
18 ** Revised: 1/91 SRD,AJ,BSK,JT Reference C Version ** 18 ** Revised: 1/91 SRD,AJ,BSK,JT Reference C Version **
19 ********************************************************************** 19 **********************************************************************
20 */ 20 */
21 21
22/* 22/*
23 ********************************************************************** 23 **********************************************************************
24 ** MD5.h -- Header file for implementation of MD5 ** 24 ** MD5.h -- Header file for implementation of MD5 **
25 ** RSA Data Security, Inc. MD5 Message Digest Algorithm ** 25 ** RSA Data Security, Inc. MD5 Message Digest Algorithm **
26 ** Created: 2/17/90 RLR ** 26 ** Created: 2/17/90 RLR **
27 ** Revised: 12/27/90 SRD,AJ,BSK,JT Reference C version ** 27 ** Revised: 12/27/90 SRD,AJ,BSK,JT Reference C version **
28 ** Revised (for MD5): RLR 4/27/91 ** 28 ** Revised (for MD5): RLR 4/27/91 **
29 ** -- G modified to have y&~z instead of y&z ** 29 ** -- G modified to have y&~z instead of y&z **
30 ** -- FF, GG, HH modified to add in last register done ** 30 ** -- FF, GG, HH modified to add in last register done **
31 ** -- Access pattern: round 2 works mod 5, round 3 works mod 3 ** 31 ** -- Access pattern: round 2 works mod 5, round 3 works mod 3 **
32 ** -- distinct additive constant for each step ** 32 ** -- distinct additive constant for each step **
33 ** -- round 4 added, working mod 7 ** 33 ** -- round 4 added, working mod 7 **
34 ********************************************************************** 34 **********************************************************************
35 */ 35 */
36 36
37/* 37/*
38 ********************************************************************** 38 **********************************************************************
39 ** Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. ** 39 ** Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. **
40 ** ** 40 ** **
41 ** License to copy and use this software is granted provided that ** 41 ** License to copy and use this software is granted provided that **
42 ** it is identified as the "RSA Data Security, Inc. MD5 Message ** 42 ** it is identified as the "RSA Data Security, Inc. MD5 Message **
43 ** Digest Algorithm" in all material mentioning or referencing this ** 43 ** Digest Algorithm" in all material mentioning or referencing this **
44 ** software or this function. ** 44 ** software or this function. **
45 ** ** 45 ** **
46 ** License is also granted to make and use derivative works ** 46 ** License is also granted to make and use derivative works **
47 ** provided that such works are identified as "derived from the RSA ** 47 ** provided that such works are identified as "derived from the RSA **
48 ** Data Security, Inc. MD5 Message Digest Algorithm" in all ** 48 ** Data Security, Inc. MD5 Message Digest Algorithm" in all **
49 ** material mentioning or referencing the derived work. ** 49 ** material mentioning or referencing the derived work. **