{
"name": "darcy",
"city": "shenzhen"
}
wilkice
Follow
😁
Focusing
Pinned Loading
-
[如何在命令行安全的传递密码] #linux
[如何在命令行安全的传递密码] #linux 1# 如何在命令行安全的传递敏感信息
23在编程的时候,有的时候我们会需要传递敏感信息,比如密码,API key 等。如果是把这些敏感信息写在代码中的话,那么可能会有泄露的可能。如果是单独用一个文件来存放这些敏感信息,那么也需要注意这个文件的安全性问题。有没有一种办法是最安全的呢?
45答案是有的,就是使用环境变量。在一个会话里面设置的环境变量在别的会话里面是读取不到的,这样可以确保我们的敏感信息不会意外泄露。
-
[go routine pool] #go
[go routine pool] #go 1// simple go routine pool
2package main
34import (
5"sync"
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.