Skip to content

Commit 106fd77

Browse files
committedAug 3, 2024
'@ ' => '@'
1 parent e60bd54 commit 106fd77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/Data/X509/PKCS10.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ parseSignedCertificationRequest (Start Sequence : xs) =
212212
where
213213
parseCertReqInfo xs' =
214214
case fromASN1 xs' of
215-
Right (cri@ CertificationRequestInfo {}, rest) ->
215+
Right (cri@CertificationRequestInfo {}, rest) ->
216216
runParseASN1State (p cri raw) rest
217217
where
218218
raw = encodeASN1' DER $ take (length xs' - length rest) xs'
@@ -358,7 +358,7 @@ instance ASN1Object PKCS9Attributes where
358358
End (Container Context 0) :
359359
rest') =
360360
Right (PKCS9Attributes $ reverse exts, rest')
361-
g exts (rest'@ (Start Sequence : _)) =
361+
g exts (rest'@(Start Sequence : _)) =
362362
case fromASN1 rest' of
363363
Right (attr, xss) -> g (attr : exts) xss
364364
Left e -> Left e

0 commit comments

Comments
 (0)
Please sign in to comment.