Use your ssh key to encrypt / decrypt files
Create a file:echo ‘This is a sekret’ >/tmp/msg.txt Export public key:openssl rsa -in ~/private.pem -out /tmp/public.pub -outform PEM -pubout Encrypt file with public key (anyone can have this key):openssl rsautl…