This is working with the PEM_read_PrivateKey () function
EVP_PKEY *PEM_read_PrivateKey(FILE *fp, EVP_PKEY **x,pem_password_cb *cb, void *u);
of OpenSSL and I want to pass the first argument directly with Array from the Key file, for example.
char key[] = {0x33, 0x53, 0x73, 0x62, 0x4e, 0x52, 0x67, 0x54, 0x54, 0x69, 0x59, 0x57, 0x35, 0x36, 0x73, 0x5a}....
EVP_PKEY *PEM_read_PrivateKey(key, EVP_PKEY **x,pem_password_cb *cb, void *u);