4.1. C 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。

[root@linux root]# cat crypt.c
/*
Netkiller 2003-06-27 crypt.c
char *crypt(const char *key, const char *salt);
*/
#include <unistd.h>
main(){
    char key[256];
    char salt[64];
    char passwd[256];
    printf("key:");
    scanf("%s",&key);
    printf("salt:");
    scanf("%s",&salt);
    sprintf(passwd,"passwd:%s\n",crypt(key,salt));
    printf(passwd);
}
[root@linux root]# gcc -o crypt -s crypt.c –lcrypt
[root@linux root]# ./crypt
key:chen
salt:salt
passwd:sa0hRW/W3DLvQ
[root@linux root]#

		


原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

目录
相关文章
|
5月前
|
存储 算法 Unix
Linux命令sha384sum详解
`sha384sum`是Linux中用于计算文件SHA-384散列值的工具,确保文件完整性。它基于不可逆的SHA-384算法,提供48字节的安全散列。命令用于验证下载、存储文件的完整性,软件分发的身份验证。主要参数包括检查已计算的散列值(-c)、二进制或文本模式(-b, -t)。示例:计算文件`example.txt`的散列值`sha384sum example.txt`,验证使用`sha384sum -c example.txt.sha384`。注意,散列用于检查文件未篡改,不适用于密码存储。
|
5月前
|
存储 算法 安全
Linux命令sha224sum详解
`sha224sum`是Linux中用于计算文件SHA-224哈希的工具,确保数据完整性和安全。它基于不可逆的SHA-224算法,产生224位哈希值,适用于文件校验、数字签名场景。命令支持多种参数,如 `-c` 验证校验和文件,`-b` 处理二进制。最佳实践包括定期验证文件、自动化脚本和安全保存校验和文件。例如,`sha224sum filename.txt` 计算哈希,`sha224sum -c filename.txt.sha224` 验证。
|
7月前
|
安全 网络安全
jsch 报错 no matching host key type found. Their offer: ssh-rsa,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha> 如何处理
【5月更文挑战第24天】jsch 报错 no matching host key type found. Their offer: ssh-rsa,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha> 如何处理
571 1
|
7月前
|
算法 网络安全
Unable to negotiate with 127.0.0.1 port 29215: no matching host key type found. Their offer: ssh-rsa,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha> 解决
【5月更文挑战第5天】Unable to negotiate with 127.0.0.1 port 29215: no matching host key type found. Their offer: ssh-rsa,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha> 解决
321 7
|
7月前
|
安全 网络安全
jsch 报错 no matching host key type found. Their offer: ssh-rsa,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha>问题处理方法
【5月更文挑战第10天】jsch 报错 no matching host key type found. Their offer: ssh-rsa,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha>问题处理方法
297 0
|
7月前
|
算法 网络安全
no matching host key type found. Their offer: ssh-rsa,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha> 问题解决
【5月更文挑战第8天】no matching host key type found. Their offer: ssh-rsa,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha> 问题解决
1387 0
|
vr&ar 数据安全/隐私保护
曲路密码(Bend crypto)
曲路密码(Bend crypto)
119 0
|
算法 数据安全/隐私保护
ctfshow crypto(二)
ctfshow crypto(二)WP
345 0
ctfshow crypto(二)
|
数据安全/隐私保护
ctfshow CRYPTO
ctfshow CRYPTO WP
518 0
ctfshow CRYPTO
|
算法 C# 数据安全/隐私保护
C#:使用MD5对用户密码加密与解密
原文:C#:使用MD5对用户密码加密与解密     C#中常涉及到对用户密码的加密于解密的算法,其中使用MD5加密是最常见的的实现方式。本文总结了通用的算法并结合了自己的一点小经验,分享给大家。 一.
3652 1