Browse Source

Add empty crypto_mod_exp() wrapper for CryptoAPI.

Jouni Malinen 15 years ago
parent
commit
8f431bc808
1 changed files with 10 additions and 0 deletions
  1. 10 0
      src/crypto/crypto_cryptoapi.c

+ 10 - 0
src/crypto/crypto_cryptoapi.c

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