forked from noteed/acme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacme-certify.hs
574 lines (486 loc) · 23.2 KB
/
acme-certify.hs
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE MultiWayIf #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE PackageImports #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE ViewPatterns #-}
--------------------------------------------------------------------------------
-- | Get a certificate from Let's Encrypt using the ACME protocol.
--
-- https://github.com/ietf-wg-acme/acme/blob/master/draft-ietf-acme-acme.md
module Main where
import BasePrelude
import Control.Lens hiding (argument, (&))
import Control.Monad.Except
import Control.Monad.Trans.Resource
import Data.Aeson.Lens
import qualified Data.HashMap.Strict as HashMap
import Data.Text (Text, pack, unpack)
import Data.Text.Encoding (decodeUtf8, encodeUtf8)
import Data.Time.Clock
import Data.Yaml (Object)
import qualified "yaml-config" Data.Yaml.Config as Config
import Data.Yaml.Config.Internal (Config (..))
import Network.ACME (HttpProvisioner, Keys (..),
canProvision, certify,
ensureWritableDir,
provisionViaFile, readKeys,
(</>))
import Network.ACME.Issuer (letsEncryptX3CrossSigned)
import Network.URI
import OpenSSL
import OpenSSL.DH
import OpenSSL.PEM
import OpenSSL.RSA
import OpenSSL.X509 (X509, getNotAfter)
import Options.Applicative hiding (header)
import qualified Options.Applicative as Opt
import System.Directory
import System.IO
import System.Posix.Escape
import System.Process
import Text.Domain.Validate hiding (validate)
import Text.Email.Validate
import qualified Data.ASN1.Types (ASN1Object)
import qualified Data.ByteString as B
import Data.PEM (pemContent, pemParseBS)
import qualified Data.X509 as X509
defaultUpdateConfigFile :: FilePath
defaultUpdateConfigFile = "config.yaml"
stagingDirectoryUrl, liveDirectoryUrl, defaultTerms :: URI
Just liveDirectoryUrl = parseAbsoluteURI "https://acme-v01.api.letsencrypt.org/directory"
Just stagingDirectoryUrl = parseAbsoluteURI "https://acme-staging.api.letsencrypt.org/directory"
Just defaultTerms = parseAbsoluteURI "https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf"
main :: IO ()
main = customExecParser (prefs showHelpOnEmpty) (info opts desc) >>= run
where
opts :: Parser Options
opts = Options <$> parseCommand
parseCommand :: Parser Command
parseCommand =
subparser $
command "certify" (info' certifyOpts certifyDesc) <>
command "update" (info' updateOpts updateDesc) <>
command "remote-check" (info' checkOpts checkDesc)
info' o d = info (helper <*> o) (progDesc $ unwords d)
desc =
fullDesc <> progDesc detailedDescription <>
Opt.header "Let's Encrypt! ACME client"
detailedDescription =
unwords
[ "This program generates signed TLS certificates"
, "using the ACME protocol and the free Let's Encrypt! CA."
]
certifyDesc =
["Generate a single signed TLS certificate", "for one or more domains."]
updateDesc =
[ "Generate any number of signed TLS certificates,"
, "each certifying any number of domains."
]
checkDesc = ["Check certificate expiration on remote HTTPS servers"]
run :: Options -> IO ()
run (Options (Certify opts)) = runCertify opts >>= either (error . ("Error: " ++)) return
run (Options (Update opts)) = runUpdate opts
run (Options (Check opts)) = runCheck opts
data Command = Certify CertifyOpts | Update UpdateOpts | Check CheckOpts
data CheckOpts = CheckOpts {
optDomains :: [String],
optConfigFile :: Maybe FilePath
}
data Options = Options {
optCommand :: Command
}
data CertifyOpts = CertifyOpts {
optKeyFile :: String,
optDomains :: [String],
optChallengeDir :: String,
optDomainDir :: Maybe String,
optEmail :: Maybe String,
optTerms :: Maybe String,
optSkipDH :: Bool,
optStaging :: Bool,
optSkipProvisionCheck :: Bool
}
data UpdateOpts = UpdateOpts {
updateConfigFile :: Maybe FilePath,
updateHosts :: [String],
updateStaging :: Bool,
updateDryRun :: Bool,
updateDoProvisionCheck :: Bool,
updateTryVHosts :: [String]
}
checkOpts :: Parser Command
checkOpts =
fmap Check $
CheckOpts <$>
many
(argument str $
metavar "DOMAINS" <>
help "Domains to check (default: from configuration file)") <*>
optional
(strOption $
long "config" <> metavar "FILENAME" <>
help "Alternative location of YAML configuration file")
updateOpts :: Parser Command
updateOpts = fmap Update $
UpdateOpts <$> optional
(strOption
(long "config" <>
metavar "FILENAME" <>
help "Alternative location of YAML configuration file"))
<*> many (argument str (metavar "HOSTS"))
<*> stagingSwitch
<*> switch
(long "dry-run" <> help
(unwords
[ "Do not fetch any certificates; only tests"
, "configuration file and http provisioning"
]))
<*> fmap not (switch
(long "no-provision-check" <> help
(unwords ["Locally check HTTP provisioning",
"before requesting certificates"])))
<*> many
(strOption
(long "try" <>
metavar "DOMAIN" <>
help
(unwords
[ "When specified, only specified domains will be checked"
, "for the ability to provision HTTP files; when not"
, "specified, all domains will be checked"
])))
-- TODO: global options
stagingSwitch :: Parser Bool
stagingSwitch =
switch
(long "staging" <> help
(unwords
[ "Use staging servers instead of live servers"
, "(generated certificates will not be trusted!)"
]))
certifyOpts :: Parser Command
certifyOpts = fmap Certify $
CertifyOpts <$> strOption (long "key" <> metavar "FILE" <>
help "Filename of your private RSA key")
<*> some
(strOption
(long "domain" <>
metavar "DOMAIN" <>
help
(unwords
[ "The domain name(s) to certify;"
, "specify more than once for a multi-domain certificate"
])))
<*> strOption (long "challenge-dir" <> metavar "DIR" <>
help "Output directory for ACME challenges")
<*> optional
(strOption
(long "domain-dir" <>
metavar "DIR" <>
help
(unwords
[ "Directory in which to domain certificates and keys are stored;"
, "the default is to use the (first) domain name as a directory name"
])))
<*> optional (strOption (long "email" <> metavar "ADDRESS" <>
help "An email address with which to register an account"))
<*> optional (strOption (long "terms" <> metavar "URL" <>
help "The terms param of the registration request"))
<*> switch (long "skip-dhparams" <> help "Don't generate DH params for combined cert")
<*> stagingSwitch
<*> switch
(long "skip-provision-check" <> help
(unwords
[ "Don't test whether HTTP provisioning works before"
, "making ACME requests"
]))
data CertSpec = CertSpec {
csDomains :: [(DomainName, HttpProvisioner)],
csSkipDH :: Bool,
csCertificateDir :: FilePath,
csUserKeys :: Keys
}
certAltNames :: X509.SignedExact X509.Certificate -> [String]
certAltNames sc = toListOf (_Just . _Right . to strip1 . folded) altNames & mapMaybe strip2
where
altNames :: Maybe (Either String X509.ExtSubjectAltName)
altNames = X509.extensionGetE $ X509.certExtensions $ X509.signedObject $ X509.getSigned sc
strip1 (X509.ExtSubjectAltName x) = x
strip2 (X509.AltNameDNS x) = Just x
strip2 _ = Nothing
data NeedCertReason = Expired | NearExpiration | SubDomainsAdded | NoExistingCert | InvalidExistingCert deriving Show
needToFetch :: CertSpec -> IO (Either NeedCertReason ())
needToFetch cs@CertSpec{..} = runExceptT $ do
exists <- liftIO $ doesFileExist certFile
unless exists $ throwError NoExistingCert
-- TODO: parse with cryptonite
cert <- liftIO $ readFile certFile >>= readX509
checkCertExpiration cert
signedCert <- (liftIO (readSignedObject certFile) >>=) $
maybe (throwError InvalidExistingCert) return . preview (folded . _Right)
let wantedDomains = domainToString . fst <$> csDomains
haveDomains = certAltNames signedCert
unless (null $ wantedDomains \\ haveDomains) $ throwError SubDomainsAdded
where
certFile = domainCertFile cs
checkCertExpiration :: X509 -> ExceptT NeedCertReason IO ()
checkCertExpiration cert = do
now <- liftIO getCurrentTime
expiration <- liftIO $ getNotAfter cert
if | expiration < now -> throwError Expired
| expiration < addUTCTime graceTime now -> throwError NearExpiration
| otherwise -> return ()
where
graceTime = days 20
days = (*) (24 * 60 * 60)
readSignedObject :: (Eq a, Show a, Data.ASN1.Types.ASN1Object a) => FilePath -> IO [Either String (X509.SignedExact a)]
readSignedObject =
B.readFile >=> return .
either error (map (X509.decodeSignedObject . pemContent)) . pemParseBS
configGetCertReqs :: Config -> IO [(String, DomainName, [VHostSpec])]
configGetCertReqs hostsConfig = fmap concat $ forHosts hostsConfig $ do
\host hostParts -> return $
flip map (HashMap.keys hostParts) $ \domain ->
( unpack host
, domainName' $ unpack domain
, combineSubdomains domain hostParts)
forHosts :: Config -> (Config.Key -> Object -> IO a) -> IO [a]
forHosts hostsConfig f =
forM (Config.keys hostsConfig) $ \host -> do
hostParts <- (Config.subconfig host hostsConfig >>= Config.subconfig "domains") <&> extractObject
f host hostParts
combineSubdomains :: AsPrimitive v => Text -> HashMap.HashMap Text v -> [VHostSpec]
combineSubdomains domain subs =
map (makeVHostSpec (domainName' $ unpack domain)) $
sort -- '.' sorts first
$ concat $ HashMap.lookup domain subs & toListOf (_Just . _String . to (words . unpack))
extractObject :: Config -> Object
extractObject (Config _ o) = o
checkRemoteCertExpiry :: DomainName -> IO (Either NeedCertReason ())
checkRemoteCertExpiry = runExceptT . (getRemoteCert >=> checkCertExpiration)
where
getRemoteCert :: DomainName -> ExceptT NeedCertReason IO X509
getRemoteCert (domainToString -> domain) = do
certText <- fetch ""
cert <- extract certText
liftIO $ readX509 cert
where
cmd p a = do
(e, out, _err) <- liftIO $ readCreateProcessWithExitCode p a
when (e /= ExitSuccess) $ throwError NoExistingCert -- TODO
return out
fetch = cmd $ proc "openssl" ["s_client", "-connect", domain ++ ":443", "-servername", domain]
extract = cmd $ proc "openssl" ["x509"]
configFileGetCertReqs :: Maybe FilePath -> IO [(String, DomainName, [VHostSpec])]
configFileGetCertReqs configFile = do
config <- Config.load $ fromMaybe defaultUpdateConfigFile configFile
Config.subconfig "hosts" config >>= configGetCertReqs
runCheck :: CheckOpts -> IO ()
runCheck CheckOpts {..} = do
domainsToCheck <- if null optDomains
then configFileGetCertReqs optConfigFile <&> (extractSubdomains `concatMap`)
else return $ domainName' <$> optDomains
checkedDomains <- map plumb <$> forM domainsToCheck (bothA return checkRemoteCertExpiry)
let verified = rights checkedDomains
when (not $ null verified) $
putStrLn $ ("Verified: " ++) $ unwords $ domainToString <$> verified
mapM_ print $ lefts checkedDomains
return ()
where
extractSubdomains :: (String, DomainName, [VHostSpec]) -> [DomainName]
extractSubdomains (_,_,a) = vhsDomain <$> a
bothA f g a = (,) <$> f a <*> g a
plumb :: (a, Either b ()) -> Either (a, b) a
plumb (d, Right ()) = Right d
plumb (d, Left r) = Left (d, r)
runUpdate :: UpdateOpts -> IO ()
runUpdate UpdateOpts { .. } = do
issuerCert <- readX509 letsEncryptX3CrossSigned
config <- Config.load $ fromMaybe defaultUpdateConfigFile updateConfigFile
certReqDomains <- configGetCertReqs =<< Config.subconfig "hosts" config
globalCertificateDir <- getHomeDirectory <&> (</> if updateStaging then ".acme/fake-certs" else ".acme/certs")
createDirectoryIfMissing True globalCertificateDir
Just keys <- getOrCreateKeys $ globalCertificateDir </> "rsa.key"
let mbCertSpecs :: [(String, DomainName, Maybe CertSpec)]
mbCertSpecs = flip map certReqDomains $ \(host, domain, domains) -> (,,) host domain $
dereference (map (chooseProvisioner host) domains) <&> certSpec globalCertificateDir keys host domain
validCertSpecs <- forM mbCertSpecs $ \(host, domain, mbSpec) ->
maybe (error $ "Invalid configuration. Host = " ++ host ++ ", domain = " ++ show domain)
(return . (,,) host domain)
mbSpec
let wantedCertSpecs = filter (wantUpdate . view _1) validCertSpecs
when (null updateTryVHosts) $ forM_ wantedCertSpecs $ \(_, domain, spec) -> do
let terms = defaultTerms
directoryUrl = if updateStaging then stagingDirectoryUrl else liveDirectoryUrl
email = emailAddress $ encodeUtf8 . pack $ "root@" ++ (domainToString . fst . head) (csDomains spec)
(needToFetch spec >>=) $ leftMapM_ $ \reason -> do
putStrLn $ concat ["New certificate needed (for domain ", domainToString domain, "): ", show reason]
when updateDoProvisionCheck $
forM_ (filter (wantProvisionCheck . fst) $ csDomains spec) $ \csd -> do
putStrLn $ "Provision check: " ++ (domainToString . fst $ csd)
can <- uncurry canProvision csd
unless can $ error "Error: cannot provision files to web server"
if updateDryRun
then putStrLn "Dry run: nothing fetched, nothing saved."
else print =<< fetchCertificate directoryUrl terms email issuerCert spec
where
elemOrNull :: Eq a => [a] -> a -> Bool
elemOrNull xs x = null xs || x `elem` xs
wantProvisionCheck :: DomainName -> Bool
wantProvisionCheck = elemOrNull updateTryVHosts . domainToString
wantUpdate :: String -> Bool
wantUpdate = elemOrNull updateHosts
dereference :: [(DomainName, Either DomainName HttpProvisioner)] -> Maybe [(DomainName, HttpProvisioner)]
dereference xs = plumb $ xs <&> fmap (either deref Just)
where
deref :: DomainName -> Maybe HttpProvisioner
deref s = lookup s xs & preview (_Just . _Right)
plumb = traverse (\(a, b) -> fmap ((,) a) b)
chooseProvisioner :: String -> VHostSpec -> (DomainName, Either DomainName HttpProvisioner)
chooseProvisioner host (VHostSpec domain pathInfo) =
(domain, provisionViaRemoteFile host <$> pathInfo)
certSpec :: FilePath -> Keys -> String -> DomainName -> [(DomainName, HttpProvisioner)] -> CertSpec
certSpec baseDir keys host domain requestDomains = CertSpec { .. }
where
csDomains = requestDomains
csSkipDH = True -- TODO: implement
csUserKeys = keys
csCertificateDir = baseDir </> host </> domainToString domain
domainToString :: DomainName -> String
domainToString = unpack . decodeUtf8 . Text.Domain.Validate.toByteString
data VHostSpec = VHostSpec
{ vhsDomain :: DomainName
, vhsProvisionInfo :: (Either DomainName FilePath)
} deriving (Show)
makeVHostSpec :: DomainName -> String -> VHostSpec
makeVHostSpec parentDomain vhostSpecStr = VHostSpec (domainName' vhostName) (left domainName' spec)
where
vhostName = appendParent sub
(sub, spec) = splitSpec vhostSpecStr
splitSpec :: String -> (String, Either String FilePath)
splitSpec (break (== '{') -> (a, b)) = (,) a $
case b of
('{':c@('/':_)) -> Right $ takeWhile (/= '}') c
('{':c) -> Left $ takeWhile (/= '}') c & appendParent
_ -> Right $ "/srv" </> vhostName </> "public_html"
appendParent = (<..> domainToString parentDomain)
data TempRemover = TempRemover { removeTemp :: IO () }
remoteTemp :: String -> FilePath -> String -> IO TempRemover
remoteTemp host fileName content = do
(inp,out,err,_pid) <- ssh $ unlines
[ "mkdir -p " ++ escape (dirname fileName)
, "printf '%s' " ++ escape content ++ " > " ++ escape fileName
, "echo provisioned."
, "trap " ++ (escape . unwords) ["rm -f", escape fileName] ++ " EXIT"
, "read line"
]
void $ hGetLine out
return $ TempRemover $ mapM_ hClose [inp, out, err]
where
ssh cmd = runInteractiveProcess "ssh" (host : words "-- sh -c" ++ [escape cmd]) Nothing Nothing
dirname :: String -> String
dirname = dropWhileEnd (/= '/')
provisionViaRemoteFile :: String -> FilePath -> HttpProvisioner
provisionViaRemoteFile = provision
where
provision host dir (bsToS -> tok) (bsToS -> thumbtoken) =
void $ allocate (liftIO $ remoteTemp host (dir </> wk </> tok) thumbtoken) removeTemp
wk = ".well-known/acme-challenge"
bsToS = unpack . decodeUtf8
runCertify :: CertifyOpts -> IO (Either String ())
runCertify CertifyOpts{..} = do
let terms = fromMaybe defaultTerms (join $ parseAbsoluteURI <$> optTerms)
directoryUrl = if optStaging then stagingDirectoryUrl else liveDirectoryUrl
domainDir = fromMaybe (head optDomains) optDomainDir
privKeyFile = optKeyFile
requestDomains = map domainName' optDomains
email = either (error . ("Error: invalid email address: " ++)) id . validate . fromString <$> optEmail
issuerCert <- readX509 letsEncryptX3CrossSigned -- TODO: Don't use fixed issuer certificate. It changed before; it will again.
seq email (return ())
createDirectoryIfMissing False domainDir
challengeDir <- ensureWritableDir optChallengeDir "challenge directory"
void $ ensureWritableDir domainDir "domain directory"
Just keys <- getOrCreateKeys privKeyFile
let spec = CertSpec {..}
csDomains = map (flip (,) (provisionViaFile challengeDir)) requestDomains
csSkipDH = optSkipDH
csUserKeys = keys
csCertificateDir = domainDir
unless optSkipProvisionCheck $
forM_ csDomains $ uncurry canProvision >=>
(`unless` error "Error: cannot provision files to web server")
fetchCertificate directoryUrl terms email issuerCert spec
fetchCertificate :: URI -> URI -> Maybe EmailAddress -> X509 -> CertSpec -> IO (Either String ())
fetchCertificate directoryUrl terms email issuerCert cs@CertSpec{..} = do
Just domainKeys <- getOrCreateKeys $ csCertificateDir </> "rsa.key"
dh <- saveDhParams cs
certificate <- certify directoryUrl csUserKeys ((,) terms <$> email) domainKeys csDomains
for certificate $ saveCertificate issuerCert dh domainKeys cs
saveDhParams :: CertSpec -> IO (Maybe DHP)
saveDhParams cs@CertSpec{csSkipDH} =
if csSkipDH then return Nothing else Just <$> getOrCreateDH (domainDhFile cs)
saveCertificate :: X509 -> Maybe DHP -> Keys -> CertSpec -> X509 -> IO ()
saveCertificate issuerCert dh domainKeys cs = saveBoth
where
saveBoth x509 = savePEM x509 >> saveCombined x509
saveCombined = combinedCert issuerCert dh domainKeys >=> writePrivateFile (domainCombinedFile cs)
savePEM = writeX509 >=> writePrivateFile (domainCertFile cs)
writePrivateFile :: FilePath -> String -> IO ()
writePrivateFile fn content = do
touchFile fn
setPermissions fn privatePerms
writeFile fn content
where
privatePerms = emptyPermissions & setOwnerReadable True & setOwnerWritable True
touchFile :: FilePath -> IO ()
touchFile fn = writeFile fn ""
domainDhFile :: CertSpec -> FilePath
domainDhFile CertSpec{..} = csCertificateDir </> "dhparams.pem"
domainCombinedFile :: CertSpec -> FilePath
domainCombinedFile CertSpec{..} = csCertificateDir </> "cert.combined.pem"
domainCertFile :: CertSpec -> FilePath
domainCertFile CertSpec{..} = csCertificateDir </> "cert.pem"
genKey :: IO String
genKey = withOpenSSL $ do
kp <- generateRSAKey' 4096 65537
writePKCS8PrivateKey kp Nothing
getOrCreate :: IO String -> (String -> IO a) -> FilePath -> IO a
getOrCreate gen parse file = do
exists <- doesFileExist file
createDirectoryIfMissing True (dirname file)
parse =<< if exists then readFile file else gen >>= save file
where
save f x = writeFile f x >> return x
getOrCreateKeys :: FilePath -> IO (Maybe Keys)
getOrCreateKeys = getOrCreate genKey readKeys
getOrCreateDH :: FilePath -> IO DHP
getOrCreateDH = getOrCreate (genDHParams' >>= writeDHParams) readDHParams
domainName' :: String -> DomainName
domainName' dom = fromMaybe (error $ "Error: invalid domain name: " ++ dom) (domainName $ fromString dom)
genDHParams' :: IO DHP
genDHParams' = do
hSetBuffering stdout NoBuffering
putStr "Generating DH Params..."
dh <- genDHParams DHGen2 2048
putStrLn " Done."
return dh
combinedCert :: X509 -> Maybe DHP -> Keys -> X509 -> IO String
combinedCert issuerCert dh (Keys privKey _) cert = do
dhStr <- mapM writeDHParams dh
certStr <- writeX509 cert
privKeyStr <- writePKCS8PrivateKey privKey Nothing
issuerCertStr <- writeX509 issuerCert
return $ concat [certStr, issuerCertStr, privKeyStr, fromMaybe "" dhStr]
otherwiseM :: Monad m => m Bool -> m () -> m ()
a `otherwiseM` b = a >>= flip unless b
infixl 0 `otherwiseM`
(<..>) :: String -> String -> String
"." <..> dom = dom
sub <..> dom = sub ++ "." ++ dom
leftMapM_ :: Monad m => (a -> m ()) -> Either a b -> m ()
leftMapM_ f = mapM_ f . either Right Left