- 博客(99)
- 资源 (63)
- 收藏
- 关注
原创 “-1” 文件删除
短连接符会被当作选项解析。解决方式有两种:一种加前缀使用相对或绝对路径;一种使用 “--” 标识选项解析结束(getopt)。
2023-03-25 11:20:13
1610
原创 service network restart 网卡启动失败,报RTNETLINK answers: File exists
“service network restart ” report “RTNETLINK answers: File exists”
2022-07-26 00:03:01
327
原创 /etc/shadow /usr/bin/passwd 详解(2)
利用 crypt 函数校验 /etc/shadow 中口令杂凑值int main(int argc, char *argv[]){ char pass[128] = {0}; char salt[128] = {0}; char *image = NULL; printf("enter passwd:"); scanf("%s",pass); getchar(); printf("\n"); printf("pass:%s\n",pass); printf("enter sal
2022-02-25 01:15:16
277
翻译 google SHA-1 碰撞数据
https://shattered.io/static/shattered.pdfB.1 An example of two colliding PDF files We give in Figure 8 the base64-encoded data of two compressed PDF files with same SHA-1 hash and distinct visual content. To check this, simply copy the string int...
2022-02-15 21:52:59
247
转载 PKCS 系列很好介绍
引用:PKCS: Public-Key Cryptography Standards | Encryption ConsultingPKCS: PUBLIC-KEY CRYPTOGRAPHY STANDARDSCryptographic standards have two important goals: to make different implementations interoperable and to avoid various known errors in typical sche
2021-12-22 01:21:13
786
原创 gmssl 生成SM2证书、加密、解密、签名、验签
1. 生成SM2密钥对gmssl ecparam -genkey -name sm2p256v1 -out sm2keypair.pem -text2.查看SM2密钥对gmssl ec -in sm2keypair.pem -text3.生成自签名证书gmssl req -x509 -key sm2keypair.pem -subj "/C=CN/ST=BJ/L=BJ/O=HD/OU=dev/CN=hello/emailAddr...
2021-12-11 00:10:15
7127
4
原创 openssl sha1 16进制数据
在线计算sha1工具一般只支持字符串计算杂凑值,利用openssl 计算任意数据杂凑值利用openssl计算16进制数据(0102030405060708)sha1值。 echo -en "\x01\x02\x03\x04\x05\x06\x07\x08" >data.bin将16进制数据写成文件 openssl sha1 data.bin openssl sha...
2021-11-02 01:34:33
576
原创 TRE(timed-release encryption)时释性加密
TRE: 发送一个消息给未来, 即发送者加密一个消息,发送给接收者,接收者只有在指定的发布时间到达的时候才能解密这个消息. TRE加密技术研究 https://crad.ict.ac.cn/CN/article/downloadArticleFile.do?attachType=PDF&id=2159...
2021-09-21 18:21:11
680
原创 计算机三大期刊
计算机学报(可检索下载) http://cjc.ict.ac.cn/软件学报(可检索下载) http://jos.org.cn/计算机研究与发展(可检索下载) https://crad.ict.ac.cn/
2021-09-21 18:13:40
312
原创 低版本系统机器上编译链接高版本库
一般来说在低版本库机器上编译的动态库兼容性好,不会因环境问题导致动态库不可用。当高版本机器上没有低版本库时,只需建一个软链即可。 比如编译动态库libx.so 依赖liby.so; 系统 动态库 soname 真实库版本 低版本 liby.so liby.so.0 liby.so.0.1.0 高版本 liby.so liby.so.1 liby.so.1.1.0 在高版本上运行只需建软链 ...
2021-09-03 01:31:40
615
原创 网络性能测量
工具:iperf3、netperf、sar、tcpdump、netcatiperf3: 无法同时双向测量。netperf:多种测试模式,似乎有bugsar:统计带宽、ip包、连接、套接字tcpdump:抓包查看以太网帧、ip数据报、tcp数据报大小necat:端口扫描:端口重定向、传输数据、ssh...
2021-08-09 00:25:37
325
原创 在线安装内核源码
查看内核源码位置ls -l /lib/modules/$(uname -r)/buildls -l /usr/src/kernels/$(uname -r)在线安装源码yum install -y kernel-devel
2021-06-27 23:01:29
495
转载 公开时间源 NTP
转载:https://dns.icoa.cn/ntp/公共 NTP 服务器地址大全Public NTP ServerIPv4 DNS·IPv6 DNS·Tracker·Google Hosts·NTP·留言NTP 是 Network Time Protocol 的简称,也就是网络时间协议。而 NTP 服务器是可以通过网络来同步时间的服务器。Windows 自带的 NTP 服务器都在美国,有时间经常无法访问。再加上有朋友跟我留言,想让我收集一下 NTP 服务器,所以建立了此页...
2021-06-16 01:37:55
1082
转载 contrycode 国家代码查询
https://www.countrycode.org/Country Codes COUNTRY COUNTRY CODE ISO CODES POPULATION AREA KM2 GDP $USD Afghanistan 93 AF / AFG 29,121,286 647,500 20.65 Billion Albania 3
2021-05-29 09:58:48
12158
转载 工业和信息化部关于发布《电信网编号计划(2017年版)》的通告
https://www.miit.gov.cn/jgsj/xgj/wjfb/art/2020/art_eb0adf5b6e7148cbb70802b264878b1e.html
2021-05-29 09:44:48
643
转载 GeneralizedTime
转载:https://www.obj-sys.com/asn1tutorial/node14.htmlGeneralizedTimeType GeneralizedTime takes values of the year, month, day, hour, time, minute,second, and second fraction in any of three forms.Local time only. ``YYYYMMDDHH[MM[SS[.fff]]]'', where t..
2021-05-21 20:48:44
718
原创 powershell中 find 命令报参数格式不正确
在cmd命令行中查看本地网络连接数netstat -ant |find /C "192" //注意必须加上引号,否则包参数格式不正确同样的命令在powershell 重执行报参数格式不正确。因为在powershell中使用带双引号的字符串,会进行变量扩展而被剥离,若要使用双引号,前面需加上转义符(`)netstat -ant |find /C `"192`"...
2021-05-12 00:35:57
8995
原创 图片压缩工具
tinypng网址:https://tinypng.com/特点:支持在线压缩,批量操作(大小和数量限制),不支持离线压缩squoosh网址:https://squoosh.app/特点:支持在线压缩,离线压缩,不支持批量操作。
2021-04-08 00:10:38
279
原创 /dev/random
下面这段代码不断往/dev/random写入数据,观察内核熵池熵值变化。#include <stdio.h>#include <stdlib.h>#include <linux/random.h>//#include <sys/random.h>#include <errno.h>#include <fcntl.h>#include <sys/ioctl.h>#include <sys/time.h
2021-04-02 01:30:23
1737
The Elliptic Curve Digital Signature Algorithm ECDSA.pdf
2021-08-14
ISO-IEC-18033-2.pdf
2021-07-28
NIST.SP.800-90B.pdf
2021-03-30
NIST.SP.800-90Ar1.pdf
2021-03-30
The Linux Command Line.pdf
2021-03-22
云密码服务技术白皮书-2019.pdf
2021-03-06
The Salsa20 family of stream ciphers.pdf
2020-11-15
PKCS #5- Password-Based Cryptography Specification Version 2.1.pdf
2020-11-03
PKCS #5- Password-Based Cryptography Specification Version 2.0.pdf
2020-11-03
nist-300-83D-(Galois Counter Mode (GCM)) .pdf
2020-10-23
gabi41.pdf
2020-10-18
ELF-1.2.pdf
2020-10-18
NIST.FIPS.197.pdf
2020-07-28
pecoff_v93.docx
2020-05-03
pecoff.pdf
2020-05-03
pecoff_v8.pdf
2020-05-03
Implementation of Elliptic Curve Digital Signature Algorithm.pdf
2020-04-30
X9.62-1998 ECDSA.pdf
2020-04-30
ChaCha, a variant of Salsa20.pdf
2020-04-29
Intel® Advanced Encryption Standard (AES) New Instructions Set.pdf
2020-04-27
ZUC-256流密码.pdf
2020-04-22
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人