You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gpg2 --import "${output_directory}"/secret.asc
# rememer that it's gpg2 and that plain old 'gpg' doesn't handle ed25519
and
Host *
User ${OUR_USERNAME}
IdentityFile ${OUTPUT_DIRECTORY}/id_ed25519
and
cat "${output_directory}"/id_ed25519.pub | ssh HOST tee -a .ssh/authorized_keys
The text was updated successfully, but these errors were encountered:
cfcs
changed the title
Output: Generate output to paste into ~.ssh/config and gpg --import
Output: Generate output to paste into ~/.ssh/config and gpg --import
May 6, 2017
cfcs
changed the title
Output: Generate output to paste into ~/.ssh/config and gpg --import
Output: Generate output to paste into ~/.ssh/config and gpg2 --import
May 6, 2017
# -c Indicates that added identities should be subject to confirmation
# before being used for authentication. Confirmation is performed
# by the SSH_ASKPASS program mentioned below. Successful confirma‐
# tion is signaled by a zero exit status from the SSH_ASKPASS pro‐
# gram, rather than text entered into the requester.
# -k When loading keys into or deleting keys from the agent, process
# plain private keys only and skip certificates.
cat ~/.ssh/id_ed25519 | ssh-add -c -k -
Note that for -c you need to pass a SSH_ASKPASS=/usr/bin/ssh-askpass environment variable to ssh-agent, which may not be there.
and
and
The text was updated successfully, but these errors were encountered: