免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 2924 | 回复: 12
打印 上一主题 下一主题

那伟大侠又在c下加密解密的程序 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-02-17 12:40 |只看该作者 |倒序浏览
那伟大侠又在c下加密解密的程序?感谢

论坛徽章:
0
2 [报告]
发表于 2003-02-17 12:42 |只看该作者

那伟大侠又在c下加密解密的程序

要什么算法的?

论坛徽章:
0
3 [报告]
发表于 2003-02-17 12:43 |只看该作者

那伟大侠又在c下加密解密的程序

都有算法库可以用的
如DES

论坛徽章:
0
4 [报告]
发表于 2003-02-17 12:45 |只看该作者

那伟大侠又在c下加密解密的程序

我就是不知道怎么用,望指点

论坛徽章:
0
5 [报告]
发表于 2003-02-17 12:55 |只看该作者

那伟大侠又在c下加密解密的程序

最简单的C下面有一个crypt函数可以实现加密。应该是DES算法的

论坛徽章:
0
6 [报告]
发表于 2003-02-17 13:01 |只看该作者

那伟大侠又在c下加密解密的程序

大虾,有例子吗?给我参考一下!先谢了

论坛徽章:
0
7 [报告]
发表于 2003-02-17 13:32 |只看该作者

那伟大侠又在c下加密解密的程序

#include <unistd.h>;
char *crypt(const char *key, const char *salt);

论坛徽章:
0
8 [报告]
发表于 2003-02-17 15:02 |只看该作者

那伟大侠又在c下加密解密的程序

key和salt参数是什么含义
这个函数的帮助在哪能查到
我有个函数库,但却查不到

论坛徽章:
0
9 [报告]
发表于 2003-02-17 15:13 |只看该作者

那伟大侠又在c下加密解密的程序


  1. SYNOPSIS
  2.      #include <unistd.h>;

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

  4. DESCRIPTION
  5.      The crypt() function is a  string  encoding  function,  used
  6.      primarily for password encryption.  It is based on a one-way
  7.      encryption algorithm with variations intended  (among  other
  8.      things)  to  frustrate  use of hardware implementations of a
  9.      key search.

  10.      The key argument points to a string to be encoded (for exam-
  11.      ple,  the  user's password.) Only the first eight characters
  12.      are used; the rest are ignored. The salt is a  two-character
  13.      string  chosen  from  the  set [a-zA-Z0-9./]. This string is
  14.      used to perturb the hashing algorithm in one  of  4096  dif-
  15.      ferent ways.

  16. RETURN VALUES
  17.      Upon successful completion, crypt() returns a pointer to the
  18.      encoded  string.  The  first  two characters of the returned
  19.      value are those of the salt argument. Otherwise it returns a
  20.      null pointer and sets errno to indicate the error.

  21.      In multithreaded applications, the return value is a pointer
  22.      to thread-specific data.

  23. ERRORS
  24.      The crypt() function will fail if:

  25.      ENOSYS    The functionality is not supported on this  imple-
  26.                mentation.

  27. USAGE
  28.      The return value of crypt() points to static  data  that  is
  29.      overwritten by each call.

  30.      The values returned by this function  may  not  be  portable
  31.      among XSI-conformant systems.
复制代码

论坛徽章:
0
10 [报告]
发表于 2003-02-17 17:04 |只看该作者

那伟大侠又在c下加密解密的程序

大虾,解密的函数是什么啊?
还有你的函数库是什么地方当的啊,给我一份好吗?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP