aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2015-12-25 19:25:27 -0500
committerJack Lloyd <[email protected]>2015-12-25 19:25:27 -0500
commit65a35d8bf385683b111312353bb40e944a26274e (patch)
treeaa36960404fbe4f7cb6cab6bf9c2931175d826b8
parent8d6fb90007ae67767936780e5e6cdb21ab5c8686 (diff)
Export mgf1_mask GH #380
-rw-r--r--doc/news.rst2
-rw-r--r--src/lib/pk_pad/mgf1/mgf1.h6
2 files changed, 5 insertions, 3 deletions
diff --git a/doc/news.rst b/doc/news.rst
index d3533d170..3e7d59c96 100644
--- a/doc/news.rst
+++ b/doc/news.rst
@@ -32,6 +32,8 @@ Version 1.11.26, Not Yet Released
are corner cases where this can occur, such as pointing to the very
end of a buffer.
+* Export MGF1 function mgf1_mask GH #380
+
Version 1.11.25, 2015-12-07
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
diff --git a/src/lib/pk_pad/mgf1/mgf1.h b/src/lib/pk_pad/mgf1/mgf1.h
index ed2f1d023..bddb8bba8 100644
--- a/src/lib/pk_pad/mgf1/mgf1.h
+++ b/src/lib/pk_pad/mgf1/mgf1.h
@@ -15,9 +15,9 @@ namespace Botan {
/**
* MGF1 from PKCS #1 v2.0
*/
-void mgf1_mask(HashFunction& hash,
- const byte in[], size_t in_len,
- byte out[], size_t out_len);
+void BOTAN_DLL mgf1_mask(HashFunction& hash,
+ const byte in[], size_t in_len,
+ byte out[], size_t out_len);
}