Add empty crypto_mod_exp() wrapper for CryptoAPI.
This commit is contained in:
parent
de979ef18c
commit
8f431bc808
1 changed files with 10 additions and 0 deletions
|
@ -777,3 +777,13 @@ int crypto_global_init(void)
|
|||
void crypto_global_deinit(void)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
int crypto_mod_exp(const u8 *base, size_t base_len,
|
||||
const u8 *power, size_t power_len,
|
||||
const u8 *modulus, size_t modulus_len,
|
||||
u8 *result, size_t *result_len)
|
||||
{
|
||||
/* TODO */
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue