关于安全的日常操作
Sun, 18 Nov 2018 16:08:25 +0000
安全对于我们平时工作中是一件很重要的事情。
因此在日常中我们应该尽可能做好并且规避一些不安全的操作。
密码使用密码管理器
比如说使用 1Password、keychain 这些密码工作。iOS 的 keychain 在 iOS 12 的时候也可以在 App 上直接调取 keychain 中的账号密码,非常方便。keychain 本身就可以生成随机密码。
ssh 使用不同的秘钥
比如公司的 Git 仓库与 GitHub 分别使用不同的 ssh 秘钥
╰─$ ls ~/.ssh
config id_rsa.github id_rsa.example
其中 config 为秘钥的配置项,ssh 到不同的服务器时可自动切换为不同的秘钥。
╰─$ cat config
Host *
ControlPersist yes
ControlMaster auto
ControlPath ~/.ssh/master-%r@%h:%p
Host *.example.com
IdentityFile ~/.ssh/id_rsa.example
User xxxx@example.com
Host *github.com
IdentityFile ~/.ssh/id_rsa.github
User xxxx@qq.com
引用:
- Set up iCloud Keychain https://support.apple.com/en-us/HT204085
blog comments powered by Disqus