summaryrefslogtreecommitdiff
path: root/Data/OpenPGP/Util/Fingerprint.hs
blob: 20b6e7250ce8f9b3c3891b45ad70441984d5d89d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{-# LANGUAGE CPP #-}
module Data.OpenPGP.Util.Fingerprint (fingerprint) where

import qualified Data.OpenPGP as OpenPGP
import qualified Data.ByteString as BS
import qualified Data.ByteString.Lazy as LZ
import Data.Char (toUpper)
import Data.Word (Word8)
import Numeric (showHex)

#if defined(VERSION_cryptonite)
import Crypto.Hash.Algorithms
import Crypto.Hash
import qualified Data.ByteArray as Bytes
#else
import Crypto.Hash.MD5 as MD5
import Crypto.Hash.SHA1 as SHA1
#endif

-- | Generate a key fingerprint from a PublicKeyPacket or SecretKeyPacket
-- <http://tools.ietf.org/html/rfc4880#section-12.2>
fingerprint :: OpenPGP.Packet -> String
fingerprint p
    | OpenPGP.version p == 4 = hexify $ sha1 material
    | OpenPGP.version p `elem` [2, 3] = hexify $ md5 material
    | otherwise = error "Unsupported Packet version or type in fingerprint"
    where

#if defined(VERSION_cryptonite)
    sha1 x = Bytes.convert (hashlazy x :: Digest SHA1)
    md5 x = Bytes.convert (hashlazy x :: Digest MD5)
#else
    sha1 = SHA1.hashlazy
    md5 = MD5.hashlazy
#endif

    material = LZ.concat $ OpenPGP.fingerprint_material p

    hexify = map toUpper . hexString . BS.unpack

    hexString :: [Word8] -> String
    hexString = foldr (pad `oo` showHex) ""
        where
        pad s | odd $ length s = '0':s
              | otherwise = s

    oo :: (b -> c) -> (a -> a1 -> b) -> a -> a1 -> c
    oo = (.) . (.)