GIT连接远程仓库 配置SSH KEY # 生成ssh秘钥 邮箱为github/码云的邮箱 jason@jason:~$ ssh-keygen -t rsa -C "xxx@163.com" # 一路回车即可 jason@jason:~/.ssh$ pwd jason@jason:~/.ssh$ l ...
分类:
其他好文 时间:
2020-12-02 11:59:15
阅读次数:
3
在CentOS容器内执行 yum install passwd openssl openssh-server -y # Ubuntu把yum改成apt-get ssh-keygen -q -t rsa -b 2048 -f /etc/ssh/ssh_host_rsa_key -N '' ssh-ke ...
分类:
系统相关 时间:
2020-11-27 11:39:01
阅读次数:
15
Github使用记录 配置Git $ ssh-keygen -t rsa -C "your_email@youremail.com" 改为自己的name和地址,继续回车,默认路径和密码,继续回车,生成.ssh,打开id_rsa.pub,复制key到github的setting中。 $ ssh -T ...
分类:
其他好文 时间:
2020-11-25 12:05:08
阅读次数:
7
#include <string.h> #include <stdlib.h> #include <stdio.h> #include "gmp.h" #define MILLER_RABIN_TEST_NUM 5 #define PRIME_BIT 512 #define CLOCKS_PER_S ...
分类:
其他好文 时间:
2020-11-24 12:38:56
阅读次数:
6
SHA1 VS RSA: what's the difference between them? Fundamentally different. SHA1 is a hash algorithm, which is a one way function, turning an input of a ...
分类:
其他好文 时间:
2020-11-23 12:09:41
阅读次数:
4
Ubuntu搭建gitolite服务:addusergitsu-git$ssh-keygen回车(即不设置密码)$gitclonegit://github.com/sitaramc/gitolite$mkdirbin$./gitolite/install-to~/bin$~/bin/gitolitesetup-pk~/.ssh/id_rsa.pub$gitclonegit@127.0.0.1:gi
分类:
系统相关 时间:
2020-11-19 13:03:24
阅读次数:
21
https://www.cnblogs.com/gaomanito/p/9569857.html 一般为了安全采用的是私钥加密,公钥解密(公钥可以用Base64转换后公开) package com.chitic.supplywater.common.service; import org.apach ...
分类:
编程语言 时间:
2020-11-17 11:48:08
阅读次数:
8
自学能力|未来核心竞争力 015自学方法论 自学的你需要给自己创作一套属于自己的教材 有声朗读:https://www.ximalaya.com/gerenchengzhang/38551524/353797956 Github: https://github.com/lhghroom/Self-s ...
分类:
其他好文 时间:
2020-11-16 14:02:13
阅读次数:
21
公开密钥密码学(英语:Public-key cryptography)也称非对称式密码学(英语:Asymmetric cryptography)是密码学的一种演算法。常用的非对称加密算法有 RSA DSA ECC 等。公开密钥加密 非对称加密算法使用公钥、私钥来加解密。 公钥与私钥是成对出现的。 多 ...
分类:
编程语言 时间:
2020-11-13 12:58:16
阅读次数:
12
#!/binbash rpm -qa |grep expect > /dev/null #判断是否已下载expect 若没有则下载该服务 a=`echo $?` [ ! $a -eq 0 ] && yum -y install expectif [ ! -e /root/.ssh/id_rsa.pu ...
分类:
其他好文 时间:
2020-11-13 12:52:19
阅读次数:
9