<aside> ℹ️ If you want we can communicate encrypted. For this I provide some public keys which you can use to encrypt your files or messages. To check my public keys check my own site: mattiamueggler.ch/security
</aside>
Notice that the size is limited to 501 Bytes.
echo "Hi, this is my encrypted message" >> message.txt
openssl rsautl -encrypt -inkey mattiamueggler_public_key.pem -pubin -in message.txt -out encrypted_message.bin && base64 -i encrypted_message.bin >> encrypted_message.txt
cat encrypted_message.txt
gpg --import mattia-at-mattiamueggler-ch_public.key
echo "Hi, this is my encrypted message" >> message.txt
gpg -e -r [email protected] -o encrypted_output.txt message.txt
You don’t need to encrypt your message manually, like before. Download my certificate and add it to your keychain. (If I wrote you a mail before from my email address, your mail client probably stored my certificate automatically on your keychain.)