summaryrefslogtreecommitdiff
path: root/Data/OpenPGP/Util/Fingerprint.hs
diff options
context:
space:
mode:
authorJoe Crayne <joe@jerkface.net>2020-05-18 16:48:40 -0400
committerJoe Crayne <joe@jerkface.net>2020-05-19 11:59:23 -0400
commit71075999e9c7cbcb16220c47c750e859d3ccc7e2 (patch)
tree7b6c4779c172c7597dbd98ea1cc7eff897a3c6d2 /Data/OpenPGP/Util/Fingerprint.hs
parenta901da5942b29e0a3f1ce358b6c14f56984934e7 (diff)
Eq/Ord instances for Fingerprint + defaultFeatures packet.
Diffstat (limited to 'Data/OpenPGP/Util/Fingerprint.hs')
-rw-r--r--Data/OpenPGP/Util/Fingerprint.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Data/OpenPGP/Util/Fingerprint.hs b/Data/OpenPGP/Util/Fingerprint.hs
index 955748d..422beac 100644
--- a/Data/OpenPGP/Util/Fingerprint.hs
+++ b/Data/OpenPGP/Util/Fingerprint.hs
@@ -23,6 +23,7 @@ oo :: (b -> c) -> (a -> a1 -> b) -> a -> a1 -> c
23oo = (.) . (.) 23oo = (.) . (.)
24 24
25newtype Fingerprint = Fingerprint BS.ByteString 25newtype Fingerprint = Fingerprint BS.ByteString
26 deriving (Eq,Ord)
26 27
27instance Show Fingerprint where 28instance Show Fingerprint where
28 show fp = hex fp 29 show fp = hex fp