webauthn-0.8.0.0: src/Crypto/WebAuthn/Operation/CredentialEntry.hs
{-# LANGUAGE StandaloneDeriving #-}
-- | Stability: experimental
-- This module represents all the information the Relying Party must store in
-- the database for every credential.
module Crypto.WebAuthn.Operation.CredentialEntry
( CredentialEntry (..),
)
where
import qualified Crypto.WebAuthn.Model.Types as M
import Data.Aeson (ToJSON)
import GHC.Generics (Generic)
-- | This type represents the database row a Relying Party server needs to
-- store for each credential that's registered to a user
data CredentialEntry = CredentialEntry
{ ceCredentialId :: M.CredentialId,
ceUserHandle :: M.UserHandle,
cePublicKeyBytes :: M.PublicKeyBytes,
ceSignCounter :: M.SignatureCounter,
ceTransports :: [M.AuthenticatorTransport]
}
deriving (Eq, Show, Generic)
-- | An arbitrary and potentially unstable JSON encoding, only intended for
-- logging purposes. To actually encode and decode structures, use the
-- "Crypto.WebAuthn.Encoding" modules
deriving instance ToJSON CredentialEntry