#include <stdio.h>
#include <openssl/bio.h>
#include <openssl/bn.h>
#include <openssl/ec.h>
#include <openssl/evp.h>
#include <openssl/objects.h>
#include "bn_local.h"
#include "ec_local.h"
#include "err_local.h"
int
EC_KEY_print(BIO *bio, const EC_KEY *ec_key, int off)
{
EVP_PKEY *pkey;
int ret = 0;
if ((pkey = EVP_PKEY_new()) == NULL)
goto err;
if (!EVP_PKEY_set1_EC_KEY(pkey, (EC_KEY *)ec_key))
goto err;
ret = EVP_PKEY_print_private(bio, pkey, off, NULL);
err:
EVP_PKEY_free(pkey);
return ret;
}
LCRYPTO_ALIAS(EC_KEY_print);
int
EC_KEY_print_fp(FILE *fp, const EC_KEY *ec_key, int off)
{
BIO *bio;
int ret;
if ((bio = BIO_new(BIO_s_file())) == NULL) {
ECerror(ERR_R_BIO_LIB);
return 0;
}
BIO_set_fp(bio, fp, BIO_NOCLOSE);
ret = EC_KEY_print(bio, ec_key, off);
BIO_free(bio);
return ret;
}
LCRYPTO_ALIAS(EC_KEY_print_fp);
int
ECParameters_print(BIO *bio, const EC_KEY *ec_key)
{
EVP_PKEY *pkey;
int ret = 0;
if ((pkey = EVP_PKEY_new()) == NULL)
goto err;
if (!EVP_PKEY_set1_EC_KEY(pkey, (EC_KEY *)ec_key))
goto err;
ret = EVP_PKEY_print_params(bio, pkey, 4, NULL);
err:
EVP_PKEY_free(pkey);
return ret;
}
LCRYPTO_ALIAS(ECParameters_print);
int
ECParameters_print_fp(FILE *fp, const EC_KEY *ec_key)
{
BIO *bio;
int ret;
if ((bio = BIO_new(BIO_s_file())) == NULL) {
ECerror(ERR_R_BIO_LIB);
return 0;
}
BIO_set_fp(bio, fp, BIO_NOCLOSE);
ret = ECParameters_print(bio, ec_key);
BIO_free(bio);
return ret;
}
LCRYPTO_ALIAS(ECParameters_print_fp);
static int
ecpk_print_asn1_parameters(BIO *bio, const EC_GROUP *group, int off)
{
const char *nist_name;
int nid;
int ret = 0;
if (!BIO_indent(bio, off, 128)) {
ECerror(ERR_R_BIO_LIB);
goto err;
}
if ((nid = EC_GROUP_get_curve_name(group)) == NID_undef) {
ECerror(ERR_R_INTERNAL_ERROR);
goto err;
}
if (BIO_printf(bio, "ASN1 OID: %s\n", OBJ_nid2sn(nid)) <= 0) {
ECerror(ERR_R_BIO_LIB);
goto err;
}
if ((nist_name = EC_curve_nid2nist(nid)) != NULL) {
if (!BIO_indent(bio, off, 128)) {
ECerror(ERR_R_BIO_LIB);
goto err;
}
if (BIO_printf(bio, "NIST CURVE: %s\n", nist_name) <= 0) {
ECerror(ERR_R_BIO_LIB);
goto err;
}
}
ret = 1;
err:
return ret;
}
static int
ecpk_print_explicit_parameters(BIO *bio, const EC_GROUP *group, int off)
{
BN_CTX *ctx = NULL;
const BIGNUM *order;
BIGNUM *p, *a, *b, *cofactor;
BIGNUM *gen = NULL;
const EC_POINT *generator;
const char *conversion_form;
const unsigned char *seed;
size_t seed_len;
point_conversion_form_t form;
int ret = 0;
if ((ctx = BN_CTX_new()) == NULL) {
ECerror(ERR_R_MALLOC_FAILURE);
goto err;
}
BN_CTX_start(ctx);
if ((p = BN_CTX_get(ctx)) == NULL)
goto err;
if ((a = BN_CTX_get(ctx)) == NULL)
goto err;
if ((b = BN_CTX_get(ctx)) == NULL)
goto err;
if ((cofactor = BN_CTX_get(ctx)) == NULL)
goto err;
if ((gen = BN_CTX_get(ctx)) == NULL)
goto err;
if (!EC_GROUP_get_curve(group, p, a, b, ctx)) {
ECerror(ERR_R_EC_LIB);
goto err;
}
if ((order = EC_GROUP_get0_order(group)) == NULL) {
ECerror(ERR_R_EC_LIB);
goto err;
}
if (!EC_GROUP_get_cofactor(group, cofactor, NULL)) {
ECerror(ERR_R_EC_LIB);
goto err;
}
if ((generator = EC_GROUP_get0_generator(group)) == NULL) {
ECerror(ERR_R_EC_LIB);
goto err;
}
form = EC_GROUP_get_point_conversion_form(group);
if (EC_POINT_point2bn(group, generator, form, gen, ctx) == NULL) {
ECerror(ERR_R_EC_LIB);
goto err;
}
if (!BIO_indent(bio, off, 128))
goto err;
if (BIO_printf(bio, "Field Type: %s\n", SN_X9_62_prime_field) <= 0)
goto err;
if (!bn_printf(bio, p, off, "Prime:"))
goto err;
if (!bn_printf(bio, a, off, "A: "))
goto err;
if (!bn_printf(bio, b, off, "B: "))
goto err;
if (form == POINT_CONVERSION_COMPRESSED)
conversion_form = "compressed";
else if (form == POINT_CONVERSION_UNCOMPRESSED)
conversion_form = "uncompressed";
else if (form == POINT_CONVERSION_HYBRID)
conversion_form = "hybrid";
else
conversion_form = "unknown";
if (!bn_printf(bio, gen, off, "Generator (%s):", conversion_form))
goto err;
if (!bn_printf(bio, order, off, "Order: "))
goto err;
if (!bn_printf(bio, cofactor, off, "Cofactor: "))
goto err;
if ((seed = EC_GROUP_get0_seed(group)) != NULL) {
size_t i;
seed_len = EC_GROUP_get_seed_len(group);
if (!BIO_indent(bio, off, 128))
goto err;
if (BIO_printf(bio, "Seed:") <= 0)
goto err;
for (i = 0; i < seed_len; i++) {
const char *sep = ":";
if (i % 15 == 0) {
if (BIO_printf(bio, "\n") <= 0)
goto err;
if (!BIO_indent(bio, off + 4, 128))
goto err;
}
if (i + 1 == seed_len)
sep = "";
if (BIO_printf(bio, "%02x%s", seed[i], sep) <= 0)
goto err;
}
if (BIO_printf(bio, "\n") <= 0)
goto err;
}
ret = 1;
err:
BN_CTX_end(ctx);
BN_CTX_free(ctx);
return ret;
}
int
ECPKParameters_print(BIO *bio, const EC_GROUP *group, int off)
{
if (group == NULL) {
ECerror(ERR_R_PASSED_NULL_PARAMETER);
return 0;
}
if ((EC_GROUP_get_asn1_flag(group) & OPENSSL_EC_NAMED_CURVE) != 0)
return ecpk_print_asn1_parameters(bio, group, off);
return ecpk_print_explicit_parameters(bio, group, off);
}
LCRYPTO_ALIAS(ECPKParameters_print);
int
ECPKParameters_print_fp(FILE *fp, const EC_GROUP *group, int off)
{
BIO *bio;
int ret;
if ((bio = BIO_new(BIO_s_file())) == NULL) {
ECerror(ERR_R_BUF_LIB);
return 0;
}
BIO_set_fp(bio, fp, BIO_NOCLOSE);
ret = ECPKParameters_print(bio, group, off);
BIO_free(bio);
return ret;
}
LCRYPTO_ALIAS(ECPKParameters_print_fp);