设计一个c++加密和解密程序。

日期:2013-02-19 17:56:16 人气:1

设计一个c++加密和解密程序。

用xor加密吧,最简单... void code(char *str, int v) { for (int inx=0; inx!=strlen(str); ++inx) str[inx] ^= v; } void decode(char *encrypt, int v){ for (int inx=0; inx!=strlen(encrypt); ++inx) encrypt[inx] ^=v;}
    A+
热门评论