Lines Matching defs:key
216 static int dh_to_text(BIO *out, const void *key, int selection)
218 const DH *dh = key;
268 && !print_labeled_bignum(out, "private-key:", priv_key))
271 && !print_labeled_bignum(out, "public-key:", pub_key))
292 static int dsa_to_text(BIO *out, const void *key, int selection)
294 const DSA *dsa = key;
491 static int ec_to_text(BIO *out, const void *key, int selection)
493 const EC_KEY *ec = key;
568 static int ecx_to_text(BIO *out, const void *key, int selection)
570 const ECX_KEY *ecx = key;
641 static int rsa_to_text(BIO *out, const void *key, int selection)
643 const RSA *rsa = key;
644 const char *type_label = "RSA key";
807 static int key2text_encode(void *vctx, const void *key, int selection,
809 int (*key2text)(BIO *out, const void *key,
819 ret = key2text(out, key, selection);
838 static void impl##2text_free_object(void *key) \
840 ossl_prov_free_key(ossl_##impl##_keymgmt_functions, key); \
843 const void *key, \
854 return key2text_encode(vctx, key, selection, cout, \