summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--KeyRing.hs39
-rw-r--r--kiki.cabal3
2 files changed, 23 insertions, 19 deletions
diff --git a/KeyRing.hs b/KeyRing.hs
index 869cbb3..78fb40c 100644
--- a/KeyRing.hs
+++ b/KeyRing.hs
@@ -5,44 +5,45 @@
5{-# LANGUAGE DeriveFunctor #-} 5{-# LANGUAGE DeriveFunctor #-}
6{-# LANGUAGE DoAndIfThenElse #-} 6{-# LANGUAGE DoAndIfThenElse #-}
7module KeyRing 7module KeyRing
8 ( InputFile(..) 8 ( runKeyRing
9 , backsig 9 , KeyRingOperation(..)
10 , KikiResult(..)
11 , KikiCondition(..)
12 , KikiReportAction(..)
13 , KeyRingRuntime(..)
14 , InputFile(..)
15 , FileType(..)
16 , RefType(..)
17 , importPublic
18 , importSecret
19 , subkeysOnly
20 , PacketUpdate(..)
21 , noManip
22 , KeyDB
23 , KeyData(..)
24 , SubKey(..)
25 , packet
26 , isKey
10 , derRSA 27 , derRSA
11 , derToBase32 28 , derToBase32
29 , backsig
12 , filterMatches 30 , filterMatches
13 , flattenKeys 31 , flattenKeys
14 , flattenTop 32 , flattenTop
15 , guardAuthentic 33 , guardAuthentic
16 , Hosts.Hosts 34 , Hosts.Hosts
17 , importPublic
18 , importSecret
19 , PacketUpdate(..)
20 , isCryptoCoinKey 35 , isCryptoCoinKey
21 , isKey
22 , KeyData(..)
23 , KeyDB
24 , keyflags 36 , keyflags
25 , KeyRingOperation(..)
26 , KikiResult(..)
27 , KikiCondition(..)
28 , locations 37 , locations
29 , matchpr 38 , matchpr
30 , RefType(..)
31 , FileType(..)
32 , noManip
33 , packet
34 , parseSpec 39 , parseSpec
35 , parseUID 40 , parseUID
36 , pkcs8 41 , pkcs8
37 , RSAPublicKey(..) 42 , RSAPublicKey(..)
38 , rsaKeyFromPacket 43 , rsaKeyFromPacket
39 , KeyRingRuntime(..)
40 , runKeyRing
41 , secretToPublic 44 , secretToPublic
42 , selectPublicKey 45 , selectPublicKey
43 , selectSecretKey 46 , selectSecretKey
44 , SubKey(..)
45 , subkeysOnly
46 , UserIDRecord(..) 47 , UserIDRecord(..)
47 , usage 48 , usage
48 , usageString 49 , usageString
diff --git a/kiki.cabal b/kiki.cabal
index 118e0af..f51b77b 100644
--- a/kiki.cabal
+++ b/kiki.cabal
@@ -25,3 +25,6 @@ Executable kiki
25 network 25 network
26 ghc-options: -O2 -fwarn-unused-binds -fwarn-unused-imports 26 ghc-options: -O2 -fwarn-unused-binds -fwarn-unused-imports
27 c-sources: dotlock.c 27 c-sources: dotlock.c
28
29library
30 exposed-modules: KeyRing