You can try to set umask before converting it
umask 077; openssl rsa -in secure.key -out insecure.key
Edit: To not affect other files in the current shell environment by the umask setting execute it in a subshell:
( umask 077; openssl rsa -in secure.key -out insecure.key )