Botan.OneTimeAuth.Poly1305
data Poly1305 Source #
Defined in Botan.OneTimeAuth.Poly1305
Methods
oneTimeAuthLazy :: OneTimeAuthKey Poly1305 -> OneTimeAuthNonce Poly1305 -> ByteString -> OneTimeAuthCode Poly1305 Source #
oneTimeAuth :: OneTimeAuthKey Poly1305 -> OneTimeAuthNonce Poly1305 -> ByteString -> OneTimeAuthCode Poly1305 Source #
(==) :: OneTimeAuthCode Poly1305 -> OneTimeAuthCode Poly1305 -> Bool #
(/=) :: OneTimeAuthCode Poly1305 -> OneTimeAuthCode Poly1305 -> Bool #
(==) :: OneTimeAuthKey Poly1305 -> OneTimeAuthKey Poly1305 -> Bool #
(/=) :: OneTimeAuthKey Poly1305 -> OneTimeAuthKey Poly1305 -> Bool #
(==) :: OneTimeAuthNonce Poly1305 -> OneTimeAuthNonce Poly1305 -> Bool #
(/=) :: OneTimeAuthNonce Poly1305 -> OneTimeAuthNonce Poly1305 -> Bool #
compare :: OneTimeAuthCode Poly1305 -> OneTimeAuthCode Poly1305 -> Ordering #
(<) :: OneTimeAuthCode Poly1305 -> OneTimeAuthCode Poly1305 -> Bool #
(<=) :: OneTimeAuthCode Poly1305 -> OneTimeAuthCode Poly1305 -> Bool #
(>) :: OneTimeAuthCode Poly1305 -> OneTimeAuthCode Poly1305 -> Bool #
(>=) :: OneTimeAuthCode Poly1305 -> OneTimeAuthCode Poly1305 -> Bool #
max :: OneTimeAuthCode Poly1305 -> OneTimeAuthCode Poly1305 -> OneTimeAuthCode Poly1305 #
min :: OneTimeAuthCode Poly1305 -> OneTimeAuthCode Poly1305 -> OneTimeAuthCode Poly1305 #
compare :: OneTimeAuthKey Poly1305 -> OneTimeAuthKey Poly1305 -> Ordering #
(<) :: OneTimeAuthKey Poly1305 -> OneTimeAuthKey Poly1305 -> Bool #
(<=) :: OneTimeAuthKey Poly1305 -> OneTimeAuthKey Poly1305 -> Bool #
(>) :: OneTimeAuthKey Poly1305 -> OneTimeAuthKey Poly1305 -> Bool #
(>=) :: OneTimeAuthKey Poly1305 -> OneTimeAuthKey Poly1305 -> Bool #
max :: OneTimeAuthKey Poly1305 -> OneTimeAuthKey Poly1305 -> OneTimeAuthKey Poly1305 #
min :: OneTimeAuthKey Poly1305 -> OneTimeAuthKey Poly1305 -> OneTimeAuthKey Poly1305 #
compare :: OneTimeAuthNonce Poly1305 -> OneTimeAuthNonce Poly1305 -> Ordering #
(<) :: OneTimeAuthNonce Poly1305 -> OneTimeAuthNonce Poly1305 -> Bool #
(<=) :: OneTimeAuthNonce Poly1305 -> OneTimeAuthNonce Poly1305 -> Bool #
(>) :: OneTimeAuthNonce Poly1305 -> OneTimeAuthNonce Poly1305 -> Bool #
(>=) :: OneTimeAuthNonce Poly1305 -> OneTimeAuthNonce Poly1305 -> Bool #
max :: OneTimeAuthNonce Poly1305 -> OneTimeAuthNonce Poly1305 -> OneTimeAuthNonce Poly1305 #
min :: OneTimeAuthNonce Poly1305 -> OneTimeAuthNonce Poly1305 -> OneTimeAuthNonce Poly1305 #
type Poly1305OneTimeAuthKey = OneTimeAuthKey Poly1305 Source #
type Poly1305OneTimeAuthNonce = OneTimeAuthNonce Poly1305 Source #
type Poly1305OneTimeAuthCode = OneTimeAuthCode Poly1305 Source #
poly1305OneTimeAuth :: OneTimeAuthKey Poly1305 -> OneTimeAuthNonce Poly1305 -> ByteString -> Poly1305OneTimeAuthCode Source #