Thanks Viktor. I ran these commands I found in search result to generate a new 
DKIM key pair yesterday and the public key does end up with a hash symbol:


# openssl genrsa -out valar_dkim_private.pem 2048

# openssl ec -in valar_dkim_private.pem -pubout -outform der | openssl base64 -A

openssl base64 will not output a hash symbol. You're likely capturing the prompt symbol (#) which is output by your shell in your copy/paste. Try this:

# openssl ec -in valar_dkim_private.pem -pubout -outform der | openssl base64 -A; printf '\n'


Peter
_______________________________________________
mailop mailing list
mailop@mailop.org
https://list.mailop.org/listinfo/mailop

Reply via email to