mirror of
https://github.com/maxgoedjen/secretive.git
synced 2024-11-22 05:27:28 +00:00
Merge branch 'main' into sorted_secrets
This commit is contained in:
commit
75f7f9d1d7
4
FAQ.md
4
FAQ.md
@ -32,6 +32,10 @@ Try running the "Setup Secretive" process by clicking on "Help", then "Setup Sec
|
|||||||
|
|
||||||
Beginning with Secretive 2.2, every secret has an automatically generated public key file representation on disk, and the path to it is listed under "Public Key Path" in Secretive. You can specify that you want to use that key in your `~/.ssh/config`. [This ServerFault answer](https://serverfault.com/a/295771) has more details on setting that up.
|
Beginning with Secretive 2.2, every secret has an automatically generated public key file representation on disk, and the path to it is listed under "Public Key Path" in Secretive. You can specify that you want to use that key in your `~/.ssh/config`. [This ServerFault answer](https://serverfault.com/a/295771) has more details on setting that up.
|
||||||
|
|
||||||
|
### How can I generate an RSA key?
|
||||||
|
|
||||||
|
The Mac's Secure Enclave only supports 256-bit EC keys, so inherently Secretive cannot support generating RSA keys.
|
||||||
|
|
||||||
### Can I use Secretive for SSH Agent Forwarding?
|
### Can I use Secretive for SSH Agent Forwarding?
|
||||||
|
|
||||||
Yes, you can! Once you've set up Secretive, just add `ForwardAgent yes` to the hosts you want to forward to in your SSH config file. Afterwards, any use of one of your SSH keys on the remote host must be authenticated through Secretive.
|
Yes, you can! Once you've set up Secretive, just add `ForwardAgent yes` to the hosts you want to forward to in your SSH config file. Afterwards, any use of one of your SSH keys on the remote host must be authenticated through Secretive.
|
||||||
|
@ -249,7 +249,7 @@ extension SmartCard.Store {
|
|||||||
case (.ellipticCurve, 256):
|
case (.ellipticCurve, 256):
|
||||||
return .eciesEncryptionCofactorVariableIVX963SHA256AESGCM
|
return .eciesEncryptionCofactorVariableIVX963SHA256AESGCM
|
||||||
case (.ellipticCurve, 384):
|
case (.ellipticCurve, 384):
|
||||||
return .eciesEncryptionCofactorVariableIVX963SHA256AESGCM
|
return .eciesEncryptionCofactorVariableIVX963SHA384AESGCM
|
||||||
case (.rsa, 1024), (.rsa, 2048):
|
case (.rsa, 1024), (.rsa, 2048):
|
||||||
return .rsaEncryptionOAEPSHA512AESGCM
|
return .rsaEncryptionOAEPSHA512AESGCM
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user