Lines Matching refs:indent
168 static int ecx_key_print(BIO *bp, const EVP_PKEY *pkey, int indent,
176 if (BIO_printf(bp, "%*s<INVALID PRIVATE KEY>\n", indent, "") <= 0)
180 if (BIO_printf(bp, "%*s%s Private-Key:\n", indent, "", nm) <= 0)
182 if (BIO_printf(bp, "%*spriv:\n", indent, "") <= 0)
185 indent + 4) == 0)
189 if (BIO_printf(bp, "%*s<INVALID PUBLIC KEY>\n", indent, "") <= 0)
193 if (BIO_printf(bp, "%*s%s Public-Key:\n", indent, "", nm) <= 0)
196 if (BIO_printf(bp, "%*spub:\n", indent, "") <= 0)
200 indent + 4) == 0)
205 static int ecx_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent,
208 return ecx_key_print(bp, pkey, indent, ctx, KEY_OP_PRIVATE);
211 static int ecx_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent,
214 return ecx_key_print(bp, pkey, indent, ctx, KEY_OP_PUBLIC);