Add empty crypto_mod_exp() wrapper for CryptoAPI.

This commit is contained in:
Jouni Malinen 2009-12-20 18:13:42 +02:00
parent de979ef18c
commit 8f431bc808

View File

@ -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;
}