我已经为代码签名创建了 GPG 密钥,还创建了一个吊销证书。据我所知,如果密钥被泄露,那么我可以使用撤销证书来撤销密钥。
有人可以建议我如何使用吊销证书吊销我的密钥吗?还有一个疑问是,在撤销密钥后,我应该在任何 GPG 密钥服务器上上传吗?这样使用我的密钥验证代码签名的人可以在使用我的代码签名文件之前检查密钥是否被撤销。
如果不需要在密钥服务器中上传,那么我的客户如何检查密钥是否被撤销?
我已经为代码签名创建了 GPG 密钥,还创建了一个吊销证书。据我所知,如果密钥被泄露,那么我可以使用撤销证书来撤销密钥。
有人可以建议我如何使用吊销证书吊销我的密钥吗?还有一个疑问是,在撤销密钥后,我应该在任何 GPG 密钥服务器上上传吗?这样使用我的密钥验证代码签名的人可以在使用我的代码签名文件之前检查密钥是否被撤销。
如果不需要在密钥服务器中上传,那么我的客户如何检查密钥是否被撤销?
我正在尝试将我的 ssh_config (CLIENT) 配置为根据同一主机的用户使用不同的密钥文件,但无法使其正常工作。怎么了?它说坏装备
Host myServer
Hostname myServer.net
Match #bad argument at this line
Host myServer
User jhon
IdentityFile ~/.ssh/jhon
Match
User foo
IdentityFile ~/.ssh/foo
---------------------->[已解决]<-------------------- -
Host myServer
Hostname myServer.net
Match user jhon host "myserver.net"
IdentityFile ~/.ssh/jhon
Match user foo host "myserver.net"
IdentityFile ~/.ssh/foo
Host another
User anyOtherOneUser
Hostname another.net
# any other configuration
Match user jhon host "another.net"
IdentityFile ~/.ssh/jhon-another
Match user foo "another.net"
IdentityFile ~/.ssh/foo-another