aboutsummaryrefslogtreecommitdiffstats
path: root/include/look_pk.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/look_pk.h')
-rw-r--r--include/look_pk.h27
1 files changed, 16 insertions, 11 deletions
diff --git a/include/look_pk.h b/include/look_pk.h
index 3255bfd86..63756ad22 100644
--- a/include/look_pk.h
+++ b/include/look_pk.h
@@ -13,20 +13,25 @@ namespace Botan {
/*************************************************
* Get an PK algorithm object *
*************************************************/
-PK_Encryptor* get_pk_encryptor(const PK_Encrypting_Key&, const std::string&);
-PK_Decryptor* get_pk_decryptor(const PK_Decrypting_Key&, const std::string&);
+BOTAN_DLL PK_Encryptor* get_pk_encryptor(const PK_Encrypting_Key&,
+ const std::string&);
-PK_Signer* get_pk_signer(const PK_Signing_Key&, const std::string&,
- Signature_Format = IEEE_1363);
+BOTAN_DLL PK_Decryptor* get_pk_decryptor(const PK_Decrypting_Key&,
+ const std::string&);
-PK_Verifier* get_pk_verifier(const PK_Verifying_with_MR_Key&,
- const std::string&,
- Signature_Format = IEEE_1363);
-PK_Verifier* get_pk_verifier(const PK_Verifying_wo_MR_Key&,
- const std::string&,
- Signature_Format = IEEE_1363);
+BOTAN_DLL PK_Signer* get_pk_signer(const PK_Signing_Key&,
+ const std::string&,
+ Signature_Format = IEEE_1363);
-PK_Key_Agreement* get_pk_kas(const PK_Key_Agreement_Key&, const std::string&);
+BOTAN_DLL PK_Verifier* get_pk_verifier(const PK_Verifying_with_MR_Key&,
+ const std::string&,
+ Signature_Format = IEEE_1363);
+BOTAN_DLL PK_Verifier* get_pk_verifier(const PK_Verifying_wo_MR_Key&,
+ const std::string&,
+ Signature_Format = IEEE_1363);
+
+BOTAN_DLL PK_Key_Agreement* get_pk_kas(const PK_Key_Agreement_Key&,
+ const std::string&);
}