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.
scalarIsValid :: EllipticCurveECDSA curve => proxy curve -> Scalar curve -> Boolcryptonite Crypto.PubKey.ECDSA Is a scalar in the accepted range for ECDSA
-
cryptonite Crypto.PubKey.RSA some parameters lead to breaking assumptions.
-
cryptonite Crypto.PubKey.RSA.Types some parameters lead to breaking assumptions.
-
cryptonite Crypto.PubKey.Rabin.Types some parameters lead to breaking assumptions
-
streaming-commons Data.Streaming.Process Use the Handle provided by the CreateProcess value. This would allow you, for example, to open up a Handle to a file, set it as std_out, and avoid any additional overhead of dealing with providing that data to your process. Since 0.1.4
UseProvidedHandle :: UseProvidedHandlestreaming-commons Data.Streaming.Process No documentation available.
module Generics.Deriving.
Monoid No documentation available.
class GSemigroup a =>
GMonoid ageneric-deriving Generics.Deriving.Monoid No documentation available.
class GSemigroup' f =>
GMonoid' (f :: k -> Type)generic-deriving Generics.Deriving.Monoid No documentation available.
-
generic-deriving Generics.Deriving.Monoid The class of monoids (types with an associative binary operation that has an identity). Instances should satisfy the following:
- Right identity x <> mempty = x
- Left identity mempty <> x = x
- Associativity x <> (y <> z) = (x <> y) <> z (Semigroup law)
- Concatenation mconcat = foldr (<>) mempty
- Unit mconcat (pure x) = x
- Multiplication mconcat (join xss) = mconcat (fmap mconcat xss)
- Subclass mconcat (toList xs) = sconcat xs