零零社区|百姓的网上家园-互动交流平台!(0.0)=^_^=(00社区)

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
热搜: 活动 交友 discuz

Solaris7 交流 --- 程序生成系统用户方法(crypt)

2013-4-5 11:34| 发布者: 123456000000| 查看: 37| 评论: 0

摘要: 六、程序生成系统用户方法(crypt) crypt是个密码加密函数,它是基於DataEncryptionStandard(DES)演算法。 crypt基本上是Onewayencryption,因此它只适用於密码的使用,不适合於资料加密 。 char*crypt(constchar*key ...
六、程序生成系统用户方法(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",get_name,get_uid,sUserGrou  

p,get_path,get_name);  

setkey("O7");  

get_password1=get_password;  

get_password1=crypt(get_pass,"O7");  

fprintf(f_shadow,"%s:%s:10000::::::\n",get_name,get_password1);  

sprintf(sys_str,"mkdir %s/%s",get_path,get_name); 

路过

雷人

握手

鲜花

鸡蛋

相关阅读

发表评论

最新评论

相关分类


Archiver|手机版|小黑屋|00社区

GMT+8, 2023-1-31 10:51 , Processed in 0.046858 second(s), 18 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部