Changeset 714149d in freewrt for package


Ignore:
Timestamp:
Jun 27, 2007, 5:12:19 PM (18 years ago)
Author:
Thorsten Glaser <tg@…>
Children:
3227e2d
Parents:
9178c00
Message:

export md5crypt functions, even to64

git-svn-id: svn://www.freewrt.org/trunk/freewrt@2974 afb5a338-a214-0410-bd46-81f09a774fd1

Location:
package/fwwif/src
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • package/fwwif/src/Makefile

    r9178c00 r714149d  
    2929
    3030chpw.o c_chpw.o: c_chpw.h common.h
    31 md5.o md5hl.o md5crypt.o: md5.h
     31md5.o md5hl.o: md5.h common.h
     32md5crypt.o: md5crypt.h md5.h common.h
    3233
    3334md5hl.c: helper.c
  • package/fwwif/src/md5crypt.c

    r9178c00 r714149d  
    1616#include <stdio.h>
    1717#include <string.h>
    18 #include "md5.h"
     18#include "md5crypt.h"
    1919#include <string.h>
    2020
     
    2222        "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
    2323
    24 static void to64(char *, u_int32_t, int);
    25 
    26 static void
     24void
    2725to64(char *s, u_int32_t v, int n)
    2826{
     
    3836 * Use MD5 for what it is best at...
    3937 */
    40 
    41 char *md5crypt(const char *pw, const char *salt);
    4238
    4339char *
     
    147143        return passwd;
    148144}
    149 
Note: See TracChangeset for help on using the changeset viewer.