RSA_FLAG_EXT_PKEY

This flag means the private key operations will be handled by rsa_mod_exp and that they do not depend on the private key components being present: for example a key stored in external hardware. Without this flag bn_mod_exp gets called when private key components are absent.

extern (C) nothrow @nogc
enum RSA_FLAG_EXT_PKEY = 0x0020;

Meta