Hoogle Search

Within LTS Haskell 24.41 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. CryptoError_ScalarMultiplicationInvalid :: CryptoError

    cryptonite Crypto.Error

    No documentation available.

  2. CryptoError_SecretKeySizeInvalid :: CryptoError

    cryptonite Crypto.Error

    No documentation available.

  3. CryptoError_SecretKeyStructureInvalid :: CryptoError

    cryptonite Crypto.Error

    No documentation available.

  4. CryptoError_SeedSizeInvalid :: CryptoError

    cryptonite Crypto.Error

    No documentation available.

  5. CryptoError_SharedSecretSizeInvalid :: CryptoError

    cryptonite Crypto.Error

    No documentation available.

  6. Argon2id :: Variant

    cryptonite Crypto.KDF.Argon2

    Argon2id is a hybrid of Argon2i and Argon2d, using a combination of data-depending and data-independent memory accesses, which gives some of Argon2i's resistance to side-channel cache timing attacks and much of Argon2d's resistance to GPU cracking attacks

  7. validatePassword :: (ByteArray password, ByteArray hash) => password -> hash -> Bool

    cryptonite Crypto.KDF.BCrypt

    Check a password against a stored bcrypt hash when authenticating a user. Returns False if the password doesn't match the hash, or if the hash is invalid or an unsupported version.

  8. validatePasswordEither :: (ByteArray password, ByteArray hash) => password -> hash -> Either String Bool

    cryptonite Crypto.KDF.BCrypt

    Check a password against a bcrypt hash As for validatePassword but will provide error information if the hash is invalid or an unsupported version.

  9. pointIsValid :: Point -> Bool

    cryptonite Crypto.PubKey.ECC.P256

    Check if a Point is valid

  10. isPointValid :: Curve -> Point -> Bool

    cryptonite Crypto.PubKey.ECC.Prim

    check if a point is on specific curve This perform three checks:

    • x is not out of range
    • y is not out of range
    • the equation y^2 = x^3 + a*x + b (mod p) holds

Page 633 of many | Previous | Next