最先附上下载地址背景(只是个人感想,技术上不对后面的内容构成知识性障碍,可以skip):最近,基于某些原因和需要,笔者需要去了解一下Crypto++库,然后对一些数据进行一些加密解密的操作。笔者之前没接触过任何加密解密方面的知识(当然,把每个字符的ASCII值加1之流对明文进行加密的“趣事”还是干过...
分类:
其他好文 时间:
2015-01-31 21:45:21
阅读次数:
525
labix.org/v2/mgo/bson 包虽然是MongoDB的golang实现,其中产生唯一ID的算法是独立的,不依赖MongoDB, 提炼这部分的代码如下: package main import ( "crypto/md5" "crypto/rand" "encoding/binary" ...
分类:
其他好文 时间:
2015-01-29 12:16:44
阅读次数:
894
先看实现代码: package main import ( "crypto/md5" "encoding/hex" "fmt" ) func main() { h := md5.New() h.Write([]byte("123456")) // 需要加密的字符串为 123456 cipherStr...
分类:
其他好文 时间:
2015-01-28 17:24:01
阅读次数:
165
解决方案:sqlplus / as sysdbagrant execute on UTL_I18N to scott;grant execute on DBMS_CRYPTO to scott;
分类:
其他好文 时间:
2015-01-28 14:21:11
阅读次数:
162
登录修改index.ejs 用户名: 密码: 修改index.jsrouter.post('/login',function(req,res,next){ var md5=crypto.createHas...
分类:
数据库 时间:
2015-01-27 12:32:57
阅读次数:
203
1 package beanutils; 2 3 import javax.xml.crypto.Data; 4 5 public class person { //javabean 6 private String name;//字段 7 private int age;...
分类:
编程语言 时间:
2015-01-26 20:40:00
阅读次数:
219
1.加密库cryptopp编译不过,错误fd_set 不认识解决:http://morgwai.pl/ndkTutorial/The last problem is that Crypto++ seems to rely on implicit inclusion of header file co...
分类:
系统相关 时间:
2015-01-22 10:52:13
阅读次数:
1076
S端:192.168.1.193[root@ntpserver~]#yuminstallntp-y&>/dev/null
[root@ntpserver~]#rpm-qlntp
/etc/dhcp/dhclient.d
/etc/dhcp/dhclient.d/ntp.sh
/etc/ntp.conf#主配置文件
/etc/ntp/crypto
/etc/ntp/crypto/pw
/etc/rc.d/init.d/ntpd#启动脚本
/etc/sysconfig/ntpd..
分类:
其他好文 时间:
2015-01-21 06:45:35
阅读次数:
263
import java.security.SecureRandom; import javax.crypto.Cipher;import javax.crypto.SecretKey;import javax.crypto.SecretKeyFactory;import javax.crypto.s...
分类:
移动开发 时间:
2015-01-19 01:34:03
阅读次数:
251
Java安全HttpDB 最近在做一个开源项目HttpDB,它的目标是在互联网中通过JDBC安全的查询数据库,解决云计算报表的数据库访问问题。 数据传输使用AES加密算法,用到了Java提供的安全库javax.crypto.*,经过一通折腾,大功告成。发布 到了新浪云服务SAE中测试,结果我不能淡定...
分类:
编程语言 时间:
2015-01-11 21:31:17
阅读次数:
220