1、在linux工作机上生成密钥对ssh-keygen -t rsa输入用户名但不输入passphrase,这样连接时就不用每次都输入passphrase了。2、添加用户和仓库在管理员的工作机上导出gitolite-admingit clone git@host:gitolite-admin在key...
分类:
其他好文 时间:
2014-07-24 21:19:53
阅读次数:
237
在C#程序中,大家可能比较熟悉的方式是md5加密解密方式,对RSA可能并不是很熟悉, 下面就说一下RSA加密和解密的算法
分类:
其他好文 时间:
2014-07-24 10:15:03
阅读次数:
249
[root@cent6~]#ssh-keygen-trsa-P‘‘
Generatingpublic/privatersakeypair.
Enterfileinwhichtosavethekey(/root/.ssh/id_rsa):
/root/.ssh/id_rsaalreadyexists.
Overwrite(y/n)?y
Youridentificationhasbeensavedin/root/.ssh/id_rsa.
Yourpublickeyhasbeensavedin/root/.ssh/..
分类:
其他好文 时间:
2014-07-23 21:27:26
阅读次数:
301
把你的本地主机用户的ssh公匙文件复制到远程主机用户的~/.ssh/文件夹中1.在本地主机的用户可以是(root,cusadmin,以及准备使用scp的user)运行:[root@root~]#ssh-keygen-trsaGeneratingpublic/privatersakeypair.Enterfileinwhichtosavethekey(/root/.ssh/id_rsa):回车Enterpa..
分类:
系统相关 时间:
2014-07-23 21:14:26
阅读次数:
270
由于业务需要,我们需要使用支付宝移动快捷支付做收款。支付宝给了我们《移动快捷支付应用集成接入包支付接口》见支付宝包《WS_SECURE_PAY_SDK》。
支付宝给的服务器demo只有Java、C#、PHP三种,而我们服务器端使用的是C++。这其中就涉及到接收支付宝的服务器异步通知。为了确保接收到的服务器异步通知来至支付宝,我们就必须验证支付宝的签名。坑爹的是,原来PC端使用MD5做签名,估计支...
分类:
移动开发 时间:
2014-07-23 18:06:38
阅读次数:
1463
1、使用windows上的SecureCRT生成密钥对。Tools->Create Public Key..->RSA->Passphrase(最好输入,也可为空)->长度默认1024->选择 OpenSSH Key format->选择位置保存。2、创建session,SSH2属性中的Authen...
分类:
系统相关 时间:
2014-07-23 14:56:46
阅读次数:
324
[root@redhatscript]#catback_web.sh
#!/bin/bash
#usescpnotusepassword.sodoit-->#ssh-keygen-trsa-->scp-p.ssh/id_rsa.pubroot@机器B的IP:/root/.ssh/authorized_keys
#mkdir&gotobackup
#####################################
#backupweb
myPath="/var/web_ba..
分类:
Web程序 时间:
2014-07-23 00:29:58
阅读次数:
239
*Author:Yuanhonglong *Date:2013-12-20 *1948281915 */package mine.algorithm.key.Des_Rsa; import java.io.File;import java.io.FileOutputStream;import ja....
分类:
其他好文 时间:
2014-07-22 22:39:52
阅读次数:
231
//组合签名
$a=time();
$b=substr($a,1);
//生成随机订单号
$orderid=$b.mt_rand(10000,99999);
//合作身份者id,以2088开头的16位纯数字
$mygoods[‘partner‘]="2088011744308664";
//商家账号
$mygoods[‘seller‘]="zfb@sinoglobal.com.cn";
//订单号
$mygoods[‘out_trade_no‘]..
分类:
Web程序 时间:
2014-07-22 18:27:52
阅读次数:
279
//组合签名
$a=time();
$b=substr($a,1);
//生成随机订单号
$orderid=$b.mt_rand(10000,99999);
//合作身份者id,以2088开头的16位纯数字
$mygoods[‘partner‘]="2088011744308664";
//商家账号
$mygoods[‘seller‘]="zfb@sinoglobal.com.cn";
//订单号
$mygoods[‘out_trade_no‘]..
分类:
Web程序 时间:
2014-07-22 18:27:02
阅读次数:
333