MCPcopy Create free account
hub / github.com/apache/httpd / RSA_get0_key

Function RSA_get0_key

modules/md/md_crypt.c:986–995  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

984 && LIBRESSL_VERSION_NUMBER < 0x2070000f)
985
986static void RSA_get0_key(const RSA *r,
987 const BIGNUM **n, const BIGNUM **e, const BIGNUM **d)
988{
989 if (n != NULL)
990 *n = r->n;
991 if (e != NULL)
992 *e = r->e;
993 if (d != NULL)
994 *d = r->d;
995}
996
997#endif
998

Callers 2

md_pkey_get_rsa_e64Function · 0.85
md_pkey_get_rsa_n64Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected