diff mbox series

ecc: delete a useless function declaration

Message ID 1617357357-11828-1-git-send-email-yumeng18@huawei.com
State Superseded
Headers show
Series ecc: delete a useless function declaration | expand

Commit Message

yumeng April 2, 2021, 9:55 a.m. UTC
This function declaration has been added in 'ecc_curve.h',
delete it in 'crypto/ecc.h'.

Fixes: 14bb76768275(crypto: ecc - expose ecc curves)
Signed-off-by: Meng Yu <yumeng18@huawei.com>
---
 crypto/ecc.h | 8 --------
 1 file changed, 8 deletions(-)

Comments

Christophe Leroy April 2, 2021, 10:34 a.m. UTC | #1
Le 02/04/2021 à 11:55, Meng Yu a écrit :
> This function declaration has been added in 'ecc_curve.h',
> delete it in 'crypto/ecc.h'.
> 
> Fixes: 14bb76768275(crypto: ecc - expose ecc curves)

Fixes tag is wrong I think, should be 4e6602916bc6

> Signed-off-by: Meng Yu <yumeng18@huawei.com>
> ---
>   crypto/ecc.h | 8 --------
>   1 file changed, 8 deletions(-)
> 
> diff --git a/crypto/ecc.h b/crypto/ecc.h
> index 46aa9bc..a006132 100644
> --- a/crypto/ecc.h
> +++ b/crypto/ecc.h
> @@ -56,14 +56,6 @@ static inline void ecc_swap_digits(const u64 *in, u64 *out, unsigned int ndigits
>   }
>   
>   /**
> - * ecc_get_curve()  - Get a curve given its curve_id
> - * @curve_id:  Id of the curve
> - *
> - * Returns pointer to the curve data, NULL if curve is not available
> - */
> -const struct ecc_curve *ecc_get_curve(unsigned int curve_id);
> -
> -/**
>    * ecc_is_key_valid() - Validate a given ECDH private key
>    *
>    * @curve_id:		id representing the curve to use
>
yumeng April 6, 2021, 1:12 a.m. UTC | #2
在 2021/4/2 18:34, Christophe Leroy 写道:
> 

> 

> Le 02/04/2021 à 11:55, Meng Yu a écrit :

>> This function declaration has been added in 'ecc_curve.h',

>> delete it in 'crypto/ecc.h'.

>>

>> Fixes: 14bb76768275(crypto: ecc - expose ecc curves)

> 

> Fixes tag is wrong I think, should be 4e6602916bc6

> 


Yes, you are right, thank you.

>> Signed-off-by: Meng Yu <yumeng18@huawei.com>

>> ---

>>   crypto/ecc.h | 8 --------

>>   1 file changed, 8 deletions(-)

>>

>> diff --git a/crypto/ecc.h b/crypto/ecc.h

>> index 46aa9bc..a006132 100644

>> --- a/crypto/ecc.h

>> +++ b/crypto/ecc.h

>> @@ -56,14 +56,6 @@ static inline void ecc_swap_digits(const u64 *in, 

>> u64 *out, unsigned int ndigits

>>   }

>>   /**

>> - * ecc_get_curve()  - Get a curve given its curve_id

>> - * @curve_id:  Id of the curve

>> - *

>> - * Returns pointer to the curve data, NULL if curve is not available

>> - */

>> -const struct ecc_curve *ecc_get_curve(unsigned int curve_id);

>> -

>> -/**

>>    * ecc_is_key_valid() - Validate a given ECDH private key

>>    *

>>    * @curve_id:        id representing the curve to use

>>

> .
diff mbox series

Patch

diff --git a/crypto/ecc.h b/crypto/ecc.h
index 46aa9bc..a006132 100644
--- a/crypto/ecc.h
+++ b/crypto/ecc.h
@@ -56,14 +56,6 @@  static inline void ecc_swap_digits(const u64 *in, u64 *out, unsigned int ndigits
 }
 
 /**
- * ecc_get_curve()  - Get a curve given its curve_id
- * @curve_id:  Id of the curve
- *
- * Returns pointer to the curve data, NULL if curve is not available
- */
-const struct ecc_curve *ecc_get_curve(unsigned int curve_id);
-
-/**
  * ecc_is_key_valid() - Validate a given ECDH private key
  *
  * @curve_id:		id representing the curve to use