WjcDes.h
上传用户:jaye19
上传日期:2010-02-17
资源大小:3k
文件大小:1k
源码类别:

系统/网络安全

开发平台:

Visual C++

  1. //////////////////////////////////////////////////////////////////////////
  2. /*
  3.     Provided by 王俊川, Northeastern University (www.neu.edu.cn)
  4.     Email: blackdrn@sohu.com
  5. This product is free for use.
  6. */
  7. //////////////////////////////////////////////////////////////////////////
  8. enum {ENCRYPT,DECRYPT};
  9. //////////////////////////////////////////////////////////////////////////
  10. // 加/解密 Type—ENCRYPT:加密,DECRYPT:解密
  11. void Des_Run(char Out[8], char In[8], bool Type=ENCRYPT);
  12. // 设置密钥
  13. void Des_SetKey(const char Key[8]);
  14. //////////////////////////////////////////////////////////////////////////