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
公开密钥密码学(英语: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
一、生成密钥证书 生成命令:keytool -genkey -alias tomcat -storetype PKCS12 -keyalg RSA -keysize 2048 -keystore keystore.p12 -validity 3650 (1)关键字解释 alias 密钥别名 stor ...
分类:
编程语言 时间:
2020-11-12 13:34:44
阅读次数:
8
什么是.pig865qqz勒索病毒? 名称 .pig865qqz勒索病毒 文件扩展名 .Globeimposter-.pig865qqz 类型 勒索病毒 家庭 GlobeImposter 简短的介绍 勒索病毒会加密存储在系统中的所有数据,并要求您支付一定的赎金以恢复重要文件。 病征 勒索病毒通过AE ...
分类:
其他好文 时间:
2020-11-07 16:53:03
阅读次数:
27
实验目的 ? 在 Linux(VM15pro/CentOS8) 环境下完成Hadoop-3.2.1伪分布式环境的搭建,并运行 Hadoop 自带的 WordCount 实例检测是否运行正常。 一、下载并配置java环境 ? Java 环境可选择 Oracle 的 JDK,或是 OpenJDK,现在一 ...
分类:
其他好文 时间:
2020-10-18 09:51:46
阅读次数:
25