Lines Matching defs:indent
805 unsup_alg(BIO *out, const EVP_PKEY *pkey, int indent, const char *kstr)
807 if (!BIO_indent(out, indent, 128))
815 EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey, int indent,
819 return pkey->ameth->pub_print(out, pkey, indent, pctx);
821 return unsup_alg(out, pkey, indent, "Public Key");
826 EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey, int indent,
830 return pkey->ameth->priv_print(out, pkey, indent, pctx);
832 return unsup_alg(out, pkey, indent, "Private Key");
837 EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey, int indent,
841 return pkey->ameth->param_print(out, pkey, indent, pctx);
842 return unsup_alg(out, pkey, indent, "Parameters");