aboutsummaryrefslogtreecommitdiffstats
path: root/src/constructs/fpe/fpe.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/constructs/fpe/fpe.h')
-rw-r--r--src/constructs/fpe/fpe.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/constructs/fpe/fpe.h b/src/constructs/fpe/fpe.h
index fba1652d3..75f90247f 100644
--- a/src/constructs/fpe/fpe.h
+++ b/src/constructs/fpe/fpe.h
@@ -16,16 +16,16 @@ namespace Botan {
/*
* Encrypt X from and onto the group Z_n using key and tweak
*/
-BigInt fpe_encrypt(const BigInt& n, const BigInt& X,
- const SymmetricKey& key,
- const MemoryRegion<byte>& tweak);
+BigInt BOTAN_DLL fpe_encrypt(const BigInt& n, const BigInt& X,
+ const SymmetricKey& key,
+ const MemoryRegion<byte>& tweak);
/*
* Decrypt X from and onto the group Z_n using key and tweak
*/
-BigInt fpe_decrypt(const BigInt& n, const BigInt& X,
- const SymmetricKey& key,
- const MemoryRegion<byte>& tweak);
+BigInt BOTAN_DLL fpe_decrypt(const BigInt& n, const BigInt& X,
+ const SymmetricKey& key,
+ const MemoryRegion<byte>& tweak);
}