-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
24 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,15 +4,15 @@ | |
{-# LANGUAGE ScopedTypeVariables #-} | ||
----------------------------------------------------------------------- | ||
-- | | ||
-- Module : Web.WebAuthn | ||
-- Module : WebAuthn | ||
-- License : BSD3 | ||
-- | ||
-- Maintainer : Fumiaki Kinoshita <[email protected]> | ||
-- | ||
-- <https://www.w3.org/TR/webauthn/ Web Authentication API> Verification library | ||
----------------------------------------------------------------------- | ||
|
||
module Web.WebAuthn ( | ||
module WebAuthn ( | ||
-- * Basic | ||
TokenBinding(..) | ||
, Origin(..) | ||
|
@@ -53,11 +53,11 @@ import qualified Codec.CBOR.Decoding as CBOR | |
import qualified Codec.Serialise as CBOR | ||
import Control.Monad.Fail | ||
|
||
import Web.WebAuthn.Signature | ||
import Web.WebAuthn.Types | ||
import qualified Web.WebAuthn.TPM as TPM | ||
import qualified Web.WebAuthn.FIDOU2F as U2F | ||
import qualified Web.WebAuthn.Packed as Packed | ||
import WebAuthn.Signature | ||
import WebAuthn.Types | ||
import qualified WebAuthn.TPM as TPM | ||
import qualified WebAuthn.FIDOU2F as U2F | ||
import qualified WebAuthn.Packed as Packed | ||
|
||
-- | Generate a cryptographic challenge (13.1). | ||
generateChallenge :: Int -> IO Challenge | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters