I'm trying to read an RSA public key from a CString. Before I was doing it from a file and it was simple, I was using:
RSA *PEM_read_RSA_PUBKEY(FILE *fp, RSA **x, pem_password_cb *cb, void *u);
but now I can't use this method. This is why I thought about using:
RSA *PEM_read_bio_RSA_PUBKEY(BIO *bp, RSA **x, pem_password_cb *cb, void *u);
But I don't understand the BIO *bp argument and how to pass a CString to it!