Tienes que crear un .p12
archivo. Para hacerlo, necesita su clave privada y un certificado para esa clave. Luego ejecute lo siguiente en su consola:
openssl pkcs12 -export -clcerts -inkey private.key -in certificate.crt -out MyPKCS12.p12 -name "Your Name"
donde private.key
es su clave privada RSA existente, certificate.crt
es su certificado existente y MyPKCS12.p12
es el nombre del archivo a crear. Este archivo se puede importar a su llavero.
Si necesita su clave para acceso SSH (SFTP, SCP o similar), no tiene que estar en su llavero. Simplemente copie su clave privada ~/.ssh/
y edite / cree el ~/.ssh/config
archivo. Allí pondrías algo en estas líneas:
# replace the host, location of the private key and the remoteUserName
# with valid values.
Host remote.domain.com
IdentityFile ~/.ssh/private.key
User remoteUserName