Hi, I'm generating rsa keys using openssl library.

Code:
rsa = RSA_generate_key(bits, RSA_F4, NULL, NULL);
While generating (and loading key from file), app wants me to enter PEM pass phrase.
Can i generate keys and load them without pass phrase?
Thanks.