Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7380c56d authored by Tudor-Dan Ambarus's avatar Tudor-Dan Ambarus Committed by Herbert Xu
Browse files

crypto: ecc - rename ecdh_make_pub_key()



Rename ecdh_make_pub_key() to ecc_make_pub_key().
ecdh_make_pub_key() is not dh specific and the reference
to dh is wrong.

Signed-off-by: default avatarTudor Ambarus <tudor.ambarus@microchip.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent ad269597
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -927,7 +927,7 @@ int ecc_is_key_valid(unsigned int curve_id, unsigned int ndigits,
	return 0;
}

int ecdh_make_pub_key(unsigned int curve_id, unsigned int ndigits,
int ecc_make_pub_key(unsigned int curve_id, unsigned int ndigits,
		     const u64 *private_key, u64 *public_key)
{
	int ret = 0;
+3 −3
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ int ecc_is_key_valid(unsigned int curve_id, unsigned int ndigits,
		     const u64 *private_key, unsigned int private_key_len);

/**
 * ecdh_make_pub_key() - Compute an ECC public key
 * ecc_make_pub_key() - Compute an ECC public key
 *
 * @curve_id:		id representing the curve to use
 * @ndigits:		curve's number of digits
@@ -54,7 +54,7 @@ int ecc_is_key_valid(unsigned int curve_id, unsigned int ndigits,
 * Returns 0 if the public key was generated successfully, a negative value
 * if an error occurred.
 */
int ecdh_make_pub_key(const unsigned int curve_id, unsigned int ndigits,
int ecc_make_pub_key(const unsigned int curve_id, unsigned int ndigits,
		     const u64 *private_key, u64 *public_key);

/**
+2 −2
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@ static int ecdh_compute_value(struct kpp_request *req)

		buf = ctx->shared_secret;
	} else {
		ret = ecdh_make_pub_key(ctx->curve_id, ctx->ndigits,
		ret = ecc_make_pub_key(ctx->curve_id, ctx->ndigits,
				       ctx->private_key, ctx->public_key);
		buf = ctx->public_key;
		/* Public part is a point thus it has both coordinates */