读好书,交益友
发布时间:2014-06-12 16:38:45
最近要用到mipr数学课,需要重新编译一下。1 现在mipr 2.6.0 源码mpir-2.6.0.tar.bz22 然后从 http://yasm.tortall.net/Download.html下载 vsyasm-1.2.0-win32.zip先解压文件 把 vsyasm.exe 拷贝到C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin32位系统 C:\Program Files\Microsoft .........【阅读全文】
发布时间:2014-06-12 12:00:47
下载 openssl最新版本tar -zxvf openssl-1.0.1h.tar.gz cd openssl-1.0.1h./config --prefix=/root/openssl --openssldir=/root/openssl -d安装electric-fencerpm -ivh ElectricFence-2.2.2-28.el6.x86_64.rpm修改make文件EX_LIBS= -lefence -ldl -lpthreadmake make install.........【阅读全文】
发布时间:2014-05-16 14:41:43
For a n-bit RSA key, direct encryption (with PKCS#1 "old-style" padding) works for arbitrary binary messages up to floor(n/8)-11 bytes. In other words, for a 1024-bit RSA key (128 bytes), up to 117 bytes. With OAEP (the PKCS#1 "new-style" padding), this is a bit less: OAEP.........【阅读全文】
发布时间:2014-04-16 10:48:52
升级一下openssl下载http://www.openssl.org/source/openssl-1.0.1g.tar.gz安装openssl步骤:进入 Visual Studio 命令提示(2010)cmd下输入perl configure VC-WIN32接着输入ms\do_ms如果使用静态库输入:nmake -f ms\nt.mak动态库 输入:nmake -f ms\ntdll.mak如果编译成功,最后的输出都在out32dll目录下:包括.........【阅读全文】
发布时间:2013-10-20 15:51:52
若服务端要求客户端认证,需要将pfx证书转换成pem格式openssl pkcs12 -clcerts -nokeys -in cert.pfx -out client.pem #客户端个人证书的公钥 openssl pkcs12 -nocerts -nodes -in cert.pfx -out key.pem #客户端个人证书的私钥也可以转换为公钥与私钥合二为一的文件openss.........【阅读全文】