Solaris7 交流 --- 程序生成系统用户方法(crypt)
发布时间:2006-10-14 8:48:25   收集提供:gaoqian
六、程序生成系统用户方法(crypt)   

    crypt是个密码加密函数,它是基於Data Encryption Standard(DES)演算法。   

crypt基本上是One way encryption,因此它只适用於密码的使用,不适合於资料加密  

。  

char *crypt(const char *key, const char *salt);  

key是使用者的密码。salt是两个字,每个字可从[a-zA-Z0-9./]中选出来,因此同一密  

码增加了4096种可能性。透过使用key中每个字的低七位元,取得56-bit关键字,这  

56-bit关键字被用来加密成一组字,这组字有13个可显示的 ASCII字,包含开头两个  

salt。 crypt在您有自行管理使用者的场合时使用,例如会员网站、BBS等等。  

范例一 : crypt_word.c  

#include   

#include   

#include   

void main(int argc,char **argv)  

{  

if (argc!=3) exit(0);  

setkey(argv[2]);  

printf("%s\n",crypt(argv[1],argv[2]));  

}  

编译  

gcc -o crypt_word crypt.c -lcrypt  

检验  

请先看您的/etc/passwd,找一个您自己的帐号,看前面两个字,那是您自己的salt。  

接下来输入: ./crypt_word your_password salt  

您也可以利用Apache上所附的htpasswd来产生加密字做为验证。  

fprintf(f_passwd,"%s:x:%d:%s::%s/%s:/bin/sh\n",ge0037574c66c5a57d.htm,get_uid,sUserGrou  

p,get_path,ge0037574c66c5a57d.htm);  

setkey("O7");  

get_password1=get_password;  

get_password1=crypt(get_pass,"O7");  

fprintf(f_shadow,"%s:%s:10000::::::\n",ge0037574c66c5a57d.htm,get_password1);  

sprintf(sys_str,"mkdir %s/%s",get_path,ge0037574c66c5a57d.htm); 
 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50