[宋词] 《满江红·怒发冲冠》 2021-04-18 中文 130 words 1 min read 《满江红·怒发冲冠》南宋·岳飞 怒发冲冠,凭栏处,潇潇雨歇。 抬望眼,仰天长啸,壮怀激烈。 三十功名尘与土,八千里路云和月。 莫等闲,白了少年头,空 Read more...
[MySQL] MySQL身份验证插件 2021-04-04 mysql 1931 words 4 mins read MySQL身份验证插件(mysql_old_password、mysql_native_password、sha256_password、c Read more...
[Linux] ssh端口转发 2021-03-07 linux 405 words 1 min read Linux ssh 端口转发 SSH有三种端口转发模式: 本地端口转发(Local Port Forwarding) 远程端口转发(Local Port Forwarding) 动态端口转发(Dynamic Port Forwarding) 本地端口转发 使 Read more...
[Go] rsa OAEP 加密、解密在go中使用及mysql中的应用 2021-03-06 golang 1301 words 3 mins read rsa OAEP 加密、解密 OAEP全称为Optimal Asymmetric Encryption Padding.是一种非对称加密填充场景. 生成RSA证书 use the openssl command to set up the RSA key files. create 2,048-bit keys. 1 2 openssl genrsa -out Read more...
[MySQL] MySQL 8.0 身份验证插件(caching_sha2_password) 2021-03-05 mysql 847 words 2 mins read MySQL 8.0 身份验证插件(caching_sha2_password) MySQL 5.6/5.7 默认身份验证插件是 mysql_native_password, 依赖于 SHA1 算法 MySQL 5.6 开始支持 sha256_password 身份验证插件。它使用加盐密码 Read more...