摘要:
HTTPS的主要缺点是需要设置连接,每次新的TLS连续都需要握手,以便创建共享的加密密钥,这个握手过程在标准TCP的握手过程之上还需要两个额外的来回过程,用这样一个高延时的连接,在网站第一个字节传输之前需要三个来回就让人感觉这个网站有点慢。 TLS有几个特征可以用来消除额外的来回,比如重用一个会话s 阅读全文
摘要:
#include "zayk_mmk_api.h" #include <memory.h> #include <time.h> #include <stdio.h> #include <sys/types.h> #include <string> #include <iostream> using 阅读全文
摘要:
Here at Trail of Bits we review a lot of code. From major open source projects to exciting new proprietary software, we’ve seen it all. But one common 阅读全文
摘要:
find * -exec touch {} + 阅读全文
摘要:
https://cryptologie.net/ https://cryptologie.net/article/262/what-are-x509-certificates-rfc-asn1-der/ https://cryptologie.net/article/497/eddsa-ed2551 阅读全文
摘要:
return func(result, secret, label, seed []byte) { labelAndSeed := make([]byte, len(label)+len(seed)) copy(labelAndSeed, label) copy(labelAndSeed[len(l 阅读全文
摘要:
http://www.gmbz.org.cn/main/bzlb.html /* GM/T SSL-VPN CipherSuites */# define GMTLS_CK_SM2DHE_WITH_SM1_SM3 0x0300E001# define GMTLS_CK_SM2_WITH_SM1_SM 阅读全文
摘要:
ls ..|xargs -I @ ffmpeg -i '../@' -acodec copy -vcodec libx264 '@' -hwaccel cuvid Duration: 00:45:30.22, start: 0.000000, bitrate: 2446 kb/sStream #0: 阅读全文
摘要:
目前,很大部分音视频编解码应用开发都是基于ffmpeg框架。ffmpeg API简单 上手快,也迅速成为了国内视频相关开发者的首选开源库。而gstreamer由于其复杂难懂,学习成本高,似乎在国内使用的人越来越少. 于是乎, 有人认为 熟悉ffmpeg API就可以在音视频流媒体开发畅通无阻了。 个 阅读全文
摘要:
sudo wget http://www.linuxidc.com/files/repo/google-chrome.list -P /etc/apt/sources.list.d/ wget -q -O - https://dl.google.com/linux/linux_signing_key 阅读全文