mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-26 23:51:08 +00:00
Improve style and documentation, fix typo
This commit is contained in:
parent
4b2f691691
commit
56bae95e1d
|
@ -180,7 +180,7 @@ int mbedtls_rsa_deduce_crt( const mbedtls_mpi *P, const mbedtls_mpi *Q,
|
||||||
* \param Q Second prime factor of N
|
* \param Q Second prime factor of N
|
||||||
* \param D RSA private exponent
|
* \param D RSA private exponent
|
||||||
* \param E RSA public exponent
|
* \param E RSA public exponent
|
||||||
* \param f_rng PRNG to be used for randomization, or NULL
|
* \param f_rng PRNG to be used for primality check, or NULL
|
||||||
* \param p_rng PRNG context for f_rng, or NULL
|
* \param p_rng PRNG context for f_rng, or NULL
|
||||||
*
|
*
|
||||||
* \return
|
* \return
|
||||||
|
@ -324,7 +324,6 @@ void mbedtls_rsa_init( mbedtls_rsa_context *ctx,
|
||||||
int padding,
|
int padding,
|
||||||
int hash_id);
|
int hash_id);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Import a set of core parameters into an RSA context
|
* \brief Import a set of core parameters into an RSA context
|
||||||
*
|
*
|
||||||
|
@ -374,7 +373,6 @@ int mbedtls_rsa_import( mbedtls_rsa_context *ctx,
|
||||||
*
|
*
|
||||||
* \return 0 if successful, non-zero error code on failure.
|
* \return 0 if successful, non-zero error code on failure.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int mbedtls_rsa_import_raw( mbedtls_rsa_context *ctx,
|
int mbedtls_rsa_import_raw( mbedtls_rsa_context *ctx,
|
||||||
unsigned char *N, size_t N_len,
|
unsigned char *N, size_t N_len,
|
||||||
unsigned char *P, size_t P_len,
|
unsigned char *P, size_t P_len,
|
||||||
|
|
|
@ -152,7 +152,7 @@ int mbedtls_rsa_deduce_moduli( mbedtls_mpi *N, mbedtls_mpi *D, mbedtls_mpi *E,
|
||||||
uint16_t order; /* Order of 2 in DE - 1 */
|
uint16_t order; /* Order of 2 in DE - 1 */
|
||||||
|
|
||||||
mbedtls_mpi K; /* Temporary used for two purposes:
|
mbedtls_mpi K; /* Temporary used for two purposes:
|
||||||
* - During factorization attempts, stores a andom integer
|
* - During factorization attempts, stores a random integer
|
||||||
* in the range of [0,..,N]
|
* in the range of [0,..,N]
|
||||||
* - During verification, holding intermediate results.
|
* - During verification, holding intermediate results.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue