加密和解密1,对称加密2,非对称加密3,单项加密加密算法都遵循:kerckhoffsprinciple对称加密:加密解密使用同一个密钥常用的有3des,AES高级加密128位,192,和256非对称加密(公钥加密):可以加密和解密主要是用来认证的公钥机密算法:成对出现rsa加密还可以认证dsa只能加..
分类:
其他好文 时间:
2014-07-29 15:31:29
阅读次数:
207
关于RSACryption帮助类定义见RSACryption一、加密与解密 //定义明文和密文变量 string plaintext = "天道酬勤,厚德载物!"; string ciphertext = ""; ...
分类:
其他好文 时间:
2014-07-28 15:19:23
阅读次数:
215
AB两台机器root用户ssh互通。 1、生成公钥。A机器生成公钥。公钥生成过程中有三次要求输入xxx的可以直接回车。 ssh-keygen?-t?rsa 2、分发公钥。A机器/root(如果是非root用户,就是/home下该用户的主目录)下进...
分类:
其他好文 时间:
2014-07-27 12:14:00
阅读次数:
253
制作Andriod应用需要使用jdk中的一个工具keytool,如下
首先 cmd
输入命令:keytool -genkey -v -keystore gkhapp.keystore -alias gkhapp -keyalg RSA -validity 1000
说明:-keystore gkhapp.keystore 表示生成的证书,可以加上路径(默认在用户主目录下);-al...
分类:
移动开发 时间:
2014-07-26 15:30:21
阅读次数:
258
生成密钥并复制 --- `ssh-keygen -t rsa -P ‘‘` `cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys` `chmod 600 ~/.ssh/authorized_keys` 修改SSH配置文件 --- 更改`/etc/ssh/sshd_config`中的 ``` RSAAuthentic...
分类:
其他好文 时间:
2014-07-26 03:30:17
阅读次数:
216
简单的说明一下方法:首先在本机上敲命令:ssh-keygen-tsra\生成rsa的密钥(这个命令生成一个密钥对:id_rsa和id_rsa.pub。他们默认被保存在~/.ssh/目录下。可以将id_rsa.pub改名为local_rsa.pub以免与远程主机上的id_rsa.pub重名。在生成过程中会要求输入passphrase,这个是用..
分类:
其他好文 时间:
2014-07-26 03:24:48
阅读次数:
249
比较裸的题了。分解因数后消元便行了,答案就是2的自由元数量次方减一(因为空集不算答案) \(2^k-1\)//{HEADS#define FILE_IN_OUT#include #include #include #include #include #include #include #includ...
分类:
其他好文 时间:
2014-07-25 14:08:11
阅读次数:
258
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