
信息安全
shmiloveyou
热爱C/C++、Rust
展开
-
DES的C++语言实现
DES的C++实现有两部分组成--schedle.h和des.cppschedle.h//外部定义部分#includeDWORDLONG dwlKey_PC_1[64]={57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,原创 2013-06-01 09:45:25 · 1239 阅读 · 0 评论 -
单表密码的C语言实现
#include#include#includevoid Decryp( char str_Letter[], char str_Min[], char str_Mi[]){ int i = 0, j= 0; for( ;str_Min[i] != '\0'; i++ ) { int index = str_Min[i] - 'a';原创 2013-06-01 09:46:07 · 3286 阅读 · 0 评论