- Timestamp:
- Jun 27, 2007, 5:12:19 PM (18 years ago)
- Children:
- 3227e2d
- Parents:
- 9178c00
- Location:
- package/fwwif/src
- Files:
-
- 1 added
- 2 edited
-
Makefile (modified) (1 diff)
-
md5crypt.c (modified) (4 diffs)
-
md5crypt.h (added)
Legend:
- Unmodified
- Added
- Removed
-
package/fwwif/src/Makefile
r9178c00 r714149d 29 29 30 30 chpw.o c_chpw.o: c_chpw.h common.h 31 md5.o md5hl.o md5crypt.o: md5.h 31 md5.o md5hl.o: md5.h common.h 32 md5crypt.o: md5crypt.h md5.h common.h 32 33 33 34 md5hl.c: helper.c -
package/fwwif/src/md5crypt.c
r9178c00 r714149d 16 16 #include <stdio.h> 17 17 #include <string.h> 18 #include "md5 .h"18 #include "md5crypt.h" 19 19 #include <string.h> 20 20 … … 22 22 "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; 23 23 24 static void to64(char *, u_int32_t, int); 25 26 static void 24 void 27 25 to64(char *s, u_int32_t v, int n) 28 26 { … … 38 36 * Use MD5 for what it is best at... 39 37 */ 40 41 char *md5crypt(const char *pw, const char *salt);42 38 43 39 char * … … 147 143 return passwd; 148 144 } 149
Note:
See TracChangeset
for help on using the changeset viewer.
