summaryrefslogtreecommitdiffstats
path: root/providers/implementations/serializers/serializer_ec.c
diff options
context:
space:
mode:
Diffstat (limited to 'providers/implementations/serializers/serializer_ec.c')
-rw-r--r--providers/implementations/serializers/serializer_ec.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/providers/implementations/serializers/serializer_ec.c b/providers/implementations/serializers/serializer_ec.c
index 3d455f1507..c4ca0c08be 100644
--- a/providers/implementations/serializers/serializer_ec.c
+++ b/providers/implementations/serializers/serializer_ec.c
@@ -31,15 +31,13 @@ static int ossl_prov_print_ec_param(BIO *out, const EC_GROUP *group)
if (curve_nid == NID_undef)
return 0;
- if (ossl_prov_bio_printf(out, "%s: %s\n", "ASN1 OID",
- OBJ_nid2sn(curve_nid)) <= 0)
+ if (BIO_printf(out, "%s: %s\n", "ASN1 OID", OBJ_nid2sn(curve_nid)) <= 0)
return 0;
/* TODO(3.0): Only named curves are currently supported */
curve_name = EC_curve_nid2nist(curve_nid);
return (curve_name == NULL
- || ossl_prov_bio_printf(out, "%s: %s\n", "NIST CURVE",
- curve_name) > 0);
+ || BIO_printf(out, "%s: %s\n", "NIST CURVE", curve_name) > 0);
}
int ossl_prov_print_eckey(BIO *out, EC_KEY *eckey, enum ec_print_type type)
@@ -86,8 +84,8 @@ int ossl_prov_print_eckey(BIO *out, EC_KEY *eckey, enum ec_print_type type)
goto err;
}
- if (ossl_prov_bio_printf(out, "%s: (%d bit)\n", type_label,
- EC_GROUP_order_bits(group)) <= 0)
+ if (BIO_printf(out, "%s: (%d bit)\n", type_label,
+ EC_GROUP_order_bits(group)) <= 0)
goto err;
if (priv != NULL
&& !ossl_prov_print_labeled_buf(out, "priv:", priv, priv_len))