aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/pk_algs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pubkey/pk_algs.h')
-rw-r--r--src/pubkey/pk_algs.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pubkey/pk_algs.h b/src/pubkey/pk_algs.h
index 3fbaed234..a1e65cb3d 100644
--- a/src/pubkey/pk_algs.h
+++ b/src/pubkey/pk_algs.h
@@ -12,12 +12,12 @@
namespace Botan {
-BOTAN_DLL Public_Key* make_public_key(const AlgorithmIdentifier& alg_id,
- const MemoryRegion<byte>& key_bits);
+Public_Key* make_public_key(const AlgorithmIdentifier& alg_id,
+ const MemoryRegion<byte>& key_bits);
-BOTAN_DLL Private_Key* make_private_key(const AlgorithmIdentifier& alg_id,
- const MemoryRegion<byte>& key_bits,
- RandomNumberGenerator& rng);
+Private_Key* make_private_key(const AlgorithmIdentifier& alg_id,
+ const MemoryRegion<byte>& key_bits,
+ RandomNumberGenerator& rng);
}