packages feed

x509-util 1.4.3 → 1.5.0

raw patch · 2 files changed

+4/−3 lines, 2 filesdep ~x509dep ~x509-validation

Dependency ranges changed: x509, x509-validation

Files

src/Certificate.hs view
@@ -210,7 +210,8 @@     when (Validate `elem` opts) $ do         let cc = CertificateChain (rights objs)         store  <- getSystemCertificateStore-        failed <- validate defaultHooks validationChecks store (maybe "" id fqhn) cc+        failed <- validate HashSHA1 defaultHooks validationChecks store (exceptionValidationCache [])+                        (maybe ("", "") (\f -> (f,"")) fqhn) cc         if failed /= []             then putStrLn ("validation failed: " ++ show failed)             else putStrLn "validation success"
x509-util.cabal view
@@ -1,5 +1,5 @@ Name:                x509-util-Version:             1.4.3+Version:             1.5.0 Description:         utility to parse, show, validate, sign and produce X509 certificates and chain. License:             BSD3 License-file:        LICENSE@@ -24,7 +24,7 @@                    , x509 >= 1.4.7                    , x509-store                    , x509-system-                   , x509-validation >= 1.4.8+                   , x509-validation >= 1.5.0                    , asn1-types >= 0.2                    , asn1-encoding                    , pem