Merge pull request #224 from libtom/pr/fix-154-dsa-api

Do not expose dsa_make_params as a public API
This commit is contained in:
karel-m 2017-06-09 14:13:04 +02:00 committed by GitHub
commit 3922868082
2 changed files with 2 additions and 4 deletions

View File

@ -410,8 +410,6 @@ int dsa_make_key(prng_state *prng, int wprng, int group_size, int modulus_size,
int dsa_make_key_ex(prng_state *prng, int wprng, int group_size, int modulus_size, dsa_key *key, char* p_hex, char* q_hex, char* g_hex); int dsa_make_key_ex(prng_state *prng, int wprng, int group_size, int modulus_size, dsa_key *key, char* p_hex, char* q_hex, char* g_hex);
int dsa_make_params(prng_state *prng, int wprng, int group_size, int modulus_size, void *p, void *q, void *g);
void dsa_free(dsa_key *key); void dsa_free(dsa_key *key);
int dsa_sign_hash_raw(const unsigned char *in, unsigned long inlen, int dsa_sign_hash_raw(const unsigned char *in, unsigned long inlen,

View File

@ -18,7 +18,7 @@
#ifdef LTC_MDSA #ifdef LTC_MDSA
/** /**
Create DSA parameters Create DSA parameters (INTERNAL ONLY, not part of public API)
@param prng An active PRNG state @param prng An active PRNG state
@param wprng The index of the PRNG desired @param wprng The index of the PRNG desired
@param group_size Size of the multiplicative group (octets) @param group_size Size of the multiplicative group (octets)
@ -28,7 +28,7 @@
@param g [out] bignum where generated 'g' is stored (must be initialized by caller) @param g [out] bignum where generated 'g' is stored (must be initialized by caller)
@return CRYPT_OK if successful, upon error this function will free all allocated memory @return CRYPT_OK if successful, upon error this function will free all allocated memory
*/ */
int dsa_make_params(prng_state *prng, int wprng, int group_size, int modulus_size, void *p, void *q, void *g) static int dsa_make_params(prng_state *prng, int wprng, int group_size, int modulus_size, void *p, void *q, void *g)
{ {
unsigned long L, N, n, outbytes, seedbytes, counter, j, i; unsigned long L, N, n, outbytes, seedbytes, counter, j, i;
int err, res, mr_tests_q, mr_tests_p, found_p, found_q, hash; int err, res, mr_tests_q, mr_tests_p, found_p, found_q, hash;