天下

记录修行的印记

密码学(三)、Crypto++使用

1.安装
Crypto++ 的官网:
http://www.cryptopp.com/

下载,我下的版本是: Crypto++ Library 5.6.1 - a Free C++ Class Library of Cryptographic Schemes

Crypto++® Library 5.6.1

解压后,用VS2008有4个工程:
cryptest
cryptlib
cryptopp
dlltest

编译 cryptlib 工程 ,乖乖, 编译出来的cryptlib.lib 有50多M,
不管了.继续.
将cryptlib.lib库加入到工程中.
编写hello world
//现在写一个hello world程序看看能不能编译通过。
#include <iostream>
using namespace std;

#include <cryptopp/aes.h>
using namespace CryptoPP;

int main() 
{
       cout << "hello crypto++" << endl;
       cout << "Aes block size is " << AES::BLOCKSIZE << endl;

 
      return 0;
}
 


附上一个用户指南:
http://www.cppblog.com/Files/aaxron/CryptoPPGuide.7z


posted on 2010-12-25 11:29 天下 阅读(2060) 评论(0)  编辑 收藏 引用 所属分类: 加密解密


只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   博问   Chat2DB   管理


<2010年12月>
2829301234
567891011
12131415161718
19202122232425
2627282930311
2345678

导航

统计

常用链接

留言簿(4)

随笔分类(378)

随笔档案(329)

链接

最新随笔

搜索

最新评论