aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);
}