Windows 提供了Crypto API, 使用这些API, 我们可以比较轻松的实现Hash,签名等工作。MSDN上有很多信息,
http://technet.microsoft.com/zh-cn/library/aa382371
下面的例子是对一个给定的字符串进行hash计算,并且把hash值签名。给定的字符串如下:
BYTE *pbBuffer = (BYTE *)"The data...
/usr/bin/ld: ext/curl/.libs/interface.o: undefined reference to symbol 'CRYPTO_set_id_callback@@OPENSSL_1.0.0'//lib/i386-linux-gnu/libcrypto.so.1.0.0:...
分类:
Web程序 时间:
2014-10-05 19:15:48
阅读次数:
333
ConstraintsTime Limit: 1 secs, Memory Limit: 32 MBDescriptionThe columnar encryption scheme scrambles the letters in a message (or plaintext) using a ...
分类:
其他好文 时间:
2014-10-05 18:01:18
阅读次数:
245
1036. Crypto ColumnsConstraintsTime Limit: 1 secs, Memory Limit: 32 MBDescriptionThe columnar encryption scheme scrambles the letters in a message (or...
分类:
其他好文 时间:
2014-10-03 19:15:05
阅读次数:
250
var crypto = require('crypto'); app.get('/api/wx/test',function(req,res){ if (req.query) { var arr = []; var signature = req.query["sign...
分类:
微信 时间:
2014-09-30 14:44:09
阅读次数:
382
主要错误原因是因为‘C:\Documents and Settings\All Users\Application Data\Microsoft\Crypto\RSA\MachineKeys‘ 文件夹下keys被破坏了,修改一下名称就可以了。 该文件夹默认为隐藏,你可以直接在我的电脑里输入...
分类:
其他好文 时间:
2014-09-18 14:58:34
阅读次数:
269
golang的 MD5加密.BASE64解密 guid 的代码:/** * 用于加密,解密,(包含MD5加密和base64加密/解密)以及GUID的生成 * 时间: * zhifieya */package safeimport ( "crypto/md5" "crypto/rand" ...
分类:
其他好文 时间:
2014-09-16 12:33:00
阅读次数:
1401
import "crypto/md5"import "encoding/hex"//go 生成 md5func T4_1() { m := md5.New() m.Write([]byte("123456")) println(hex.EncodeToString(m.Sum(ni...
分类:
其他好文 时间:
2014-09-12 20:29:54
阅读次数:
223
bufio 实现缓冲的I/O bytes 提供了对字节切片操作的函数 crypto 收集了常见的加密常数 errors 实现了操作错误的函数 Expvar 为公共变量提供了一个标准的接口,如服务器中的运算计数器 flag 实现了命令行标记解析 ...
分类:
其他好文 时间:
2014-09-03 17:02:47
阅读次数:
261