aboutsummaryrefslogtreecommitdiff
path: root/source/tanya/crypto/package.d
diff options
context:
space:
mode:
Diffstat (limited to 'source/tanya/crypto/package.d')
-rw-r--r--source/tanya/crypto/package.d18
1 files changed, 18 insertions, 0 deletions
diff --git a/source/tanya/crypto/package.d b/source/tanya/crypto/package.d
new file mode 100644
index 0000000..314d0f1
--- /dev/null
+++ b/source/tanya/crypto/package.d
@@ -0,0 +1,18 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+/**
+ * Copyright: Eugene Wissner 2016.
+ * License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
+ * Mozilla Public License, v. 2.0).
+ * Authors: $(LINK2 mailto:belka@caraus.de, Eugene Wissner)
+ */
+module tanya.crypto;
+
+public
+{
+ import tanya.crypto.des;
+ import tanya.crypto.mode;
+ import tanya.crypto.symmetric;
+}