I have found this way of generating rsa public key with openssl and encrypting it with aes:
openssl genrsa -aes256 -out public.pem 4096
how could i do the same with rc4:
openssl genrsa -rc4 -out public.pem 4096
Generating RSA private key, 4096 bit long modulus
...............................................................................................................................++
...............................++
e is 65537 (0x010001)
140272337293760:error:09069071:PEM routines:PEM_ASN1_write_bio:unsupported cipher:../crypto/pem/pem_lib.c:309:
is there any way to do this?