summaryrefslogtreecommitdiffhomepage
path: root/keysafe.hs
diff options
context:
space:
mode:
authorJoey Hess <joeyh@joeyh.name>2016-08-06 17:35:10 -0400
committerJoey Hess <joeyh@joeyh.name>2016-08-06 17:35:10 -0400
commit7192abc5d53aa5a6ee609ed30bd05f1575e67b65 (patch)
tree2f1d17f27b483a8deec001a12a55696b0eea5978 /keysafe.hs
parentfbd0bb3a2b2541e897708fb441ab1c8a2b5ab78e (diff)
downloadkeysafe-7192abc5d53aa5a6ee609ed30bd05f1575e67b65.tar.gz
some basic data types and expensive hashing
Diffstat (limited to 'keysafe.hs')
-rw-r--r--keysafe.hs8
1 files changed, 8 insertions, 0 deletions
diff --git a/keysafe.hs b/keysafe.hs
new file mode 100644
index 0000000..9f9cb92
--- /dev/null
+++ b/keysafe.hs
@@ -0,0 +1,8 @@
+module Main where
+
+{-# LANGUAGE OverloadedStrings #-}
+
+import Types
+import Encryption
+
+main = print $ genKeyEncryptionKey (Password "foo") (Name "bar")