首先两台服务器可以无密码登录(这个方式比较简单,当然安全系数会降低)#ssh-keygen -t rsa#生成密钥发送给远程服务器上#ssh-copy-id ~/root/id_rsa.pub user@host 这样ssh的时候就不用输入密码了。对于crontab这种定时自动运行的任务来说还...
分类:
数据库 时间:
2014-09-24 22:33:57
阅读次数:
326
1、概述前端时间与前端人员配合开发一款移动端WEB-APP,在各种因素的限制下,数据的安全性,让我为难,目前最可行和最直接的方式就是对所有用户敏感数据进行加密处理,然后传输到后端,解析处理。事先我尝试fiddler工具,拦截了APP所有的请求,结果发现不得不做安全处理了,至..
分类:
其他好文 时间:
2014-09-23 18:17:15
阅读次数:
263
RSA 是一种公钥加密算法,在 1977 年由麻省理工学院的Ron Rivest, Adi Shamir, Leonard Adleman 三人一起提出,因此该算法命名以三人姓氏首字母组合而成。 SSH 是 Secure Shell 缩写,是建立在应用层和传输层基础上的安全协议,为计算机上运行...
分类:
系统相关 时间:
2014-09-21 14:29:00
阅读次数:
296
第一:检查.ssh是否存在(ls -al ~/.ssh)$ ls -al ~/.sshLists the files in your .ssh directory, if they exist第二:产生新的SSH key(ssh-keygen -t rsa -C "your_email@exampl...
1.下载快钱的demo代码和一个证书包,还有人民币网关自助接入接口文档2.生成自己的证书2.0.安装Win32OpenSSL_Light-0_9_8k.exe打开openssl.exe,2.1.输入genrsa-outprivate-rsa.key1024,按enter即可。2.2输入req-new-x509-keyprivate-rsa.key-days750-outpublic-rsa.cer,按ente..
分类:
其他好文 时间:
2014-09-18 16:52:34
阅读次数:
2180
主要错误原因是因为‘C:\Documents and Settings\All Users\Application Data\Microsoft\Crypto\RSA\MachineKeys‘ 文件夹下keys被破坏了,修改一下名称就可以了。 该文件夹默认为隐藏,你可以直接在我的电脑里输入...
分类:
其他好文 时间:
2014-09-18 14:58:34
阅读次数:
269
先要生成一个公钥,使用命令:$ ssh-keygen -t rsaGenerating public/private rsa key pair.Enter file in which to save the key (/home/user/.ssh/id_rsa):Enter passphrase ...
分类:
其他好文 时间:
2014-09-18 14:43:33
阅读次数:
183
挺水的一题。其实只要理解了RSA算法,就知道要使用大整数分解的方法来直接模拟了。不过,要注意两个INT64的数相乘来超范围#include #include #include #include #include #include #define LL __int64 using namespace ...
分类:
其他好文 时间:
2014-09-17 23:16:32
阅读次数:
246
使用 ssh 登录远程主机,提供私钥 id_rsa.rsa ssh?-l?hust_fmliu?-i?id_rsa.rsa?planetlab1.xeno.cl.cam.ac.uk 出现如下错误 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@???????...
分类:
其他好文 时间:
2014-09-16 17:34:31
阅读次数:
226
具体的可以参考petshop源码程序。加密前: View Code加密后: Rsa Key ...
分类:
Web程序 时间:
2014-09-16 15:50:10
阅读次数:
1446