mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-31 11:17:29 +02:00
fix opensslextra w/o ecc ssh
This commit is contained in:
@ -2115,6 +2115,12 @@ int mp_mul_2d(fp_int *a, int b, fp_int *c)
|
||||
return MP_OKAY;
|
||||
}
|
||||
|
||||
int mp_div_2d(fp_int* a, int b, fp_int* c, fp_int* d)
|
||||
{
|
||||
fp_div_2d(a, b, c, d);
|
||||
return MP_OKAY;
|
||||
}
|
||||
|
||||
#ifdef ALT_ECC_SIZE
|
||||
void fp_copy(fp_int *a, fp_int* b)
|
||||
{
|
||||
@ -2695,12 +2701,6 @@ int mp_init_copy(fp_int * a, fp_int * b)
|
||||
return MP_OKAY;
|
||||
}
|
||||
|
||||
int mp_div_2d(fp_int* a, int b, fp_int* c, fp_int* d)
|
||||
{
|
||||
fp_div_2d(a, b, c, d);
|
||||
return MP_OKAY;
|
||||
}
|
||||
|
||||
#ifdef HAVE_COMP_KEY
|
||||
|
||||
int mp_cnt_lsb(fp_int* a)
|
||||
|
Reference in New Issue
Block a user