forked from wolfSSL/wolfssl
pwdbased warning fix
This commit is contained in:
@@ -42,7 +42,7 @@
|
|||||||
|
|
||||||
/* Define to 1 or 0, depending whether the compiler supports simple visibility
|
/* Define to 1 or 0, depending whether the compiler supports simple visibility
|
||||||
declarations. */
|
declarations. */
|
||||||
#define HAVE_VISIBILITY 0
|
#define HAVE_VISIBILITY 1
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
*/
|
*/
|
||||||
|
@@ -314,9 +314,11 @@ int mp_init_multi(mp_int* a, mp_int* b, mp_int* c, mp_int* d, mp_int* e,
|
|||||||
int mp_set_int (mp_int * a, unsigned long b);
|
int mp_set_int (mp_int * a, unsigned long b);
|
||||||
int mp_gcd (mp_int * a, mp_int * b, mp_int * c);
|
int mp_gcd (mp_int * a, mp_int * b, mp_int * c);
|
||||||
int mp_lcm (mp_int * a, mp_int * b, mp_int * c);
|
int mp_lcm (mp_int * a, mp_int * b, mp_int * c);
|
||||||
int mp_sub_d (mp_int * a, mp_digit b, mp_int * c);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CYASSL_KEY_GEN) || defined(HAVE_ECC) || !defined(NO_PWDBASED)
|
||||||
|
int mp_sub_d (mp_int * a, mp_digit b, mp_int * c);
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user