-
Notifications
You must be signed in to change notification settings - Fork 25
Fix duplicate .pub suffix if the file already has one #65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: release
Are you sure you want to change the base?
Conversation
32a2463 to
b1706a7
Compare
b1706a7 to
cda485d
Compare
|
Please read CONTRIBUTING.pod. |
|
I think that your setup is incorrect. Private keys handled by If you edit manually the |
|
Maybe I'm misunderstanding but the tool provides the option to specify a key file location with the File doesn't exist: I did try to follow the contributing instructions but it references a folder that doesn't exist UPDATE: Ah, I see, the xt/* and release.pl scripts are in the Just looking at it I think I may have misunderstood how the tool I was using for SSH generates/references keys when using an IdentityAgent, it puts a .pub file on disk as a shim for releasing the key, sorry about that! Maybe this could be a feature request/feature added to support IdentityAgent public keys? |
This is fair. It appears you're probably the first user to have used that option ;). Tell me more about IdentityAgent. I won't be able to consider support for interactions with this tool if I can't test it. |
|
So I'm using Secretive, which loads SSH keys into the Secure Enclave (SEP) on Macs, the keys are never disclosed to the users machine and it requires authentication to authenticate with, it's quite cool! So you add a new key, it generates the key in the SEP, it's never actually exposed, you get a path to a key file: Which contains the public key (without any comment, hence why I made the additional regex tweak, and yeah.. I know, NIST curves...): In order to specify a specific key to be loaded with an You can find out more about how
|
When I was using a tool that uses the
IdentityAgentsetting to specify anIdentityFilethat is a public key, the application would blindly append an additional .pub to the filename, even though there was already one there.I fixed this locally, I'm not very familiar with Perl so it's possible I've done something wrong but this fix works for me