{-# LANGUAGE DataKinds #-}
{-# LANGUAGE TypeOperators #-}
module Crypto.Number.Nat
( type IsDivisibleBy8
, type IsAtMost, type IsAtLeast
, isDivisibleBy8
, isAtMost
, isAtLeast
) where
import Data.Type.Equality
import GHC.TypeLits
import Unsafe.Coerce (unsafeCoerce)
import Crypto.Internal.Nat
isDivisibleBy8 :: KnownNat n => proxy n -> Maybe (IsDiv8 n n :~: 'True)
isDivisibleBy8 :: proxy n -> Maybe (IsDiv8 n n :~: 'True)
isDivisibleBy8 proxy n
n
| Integer -> Integer -> Integer
forall a. Integral a => a -> a -> a
mod (proxy n -> Integer
forall (n :: Nat) (proxy :: Nat -> *).
KnownNat n =>
proxy n -> Integer
natVal proxy n
n) Integer
8 Integer -> Integer -> Bool
forall a. Eq a => a -> a -> Bool
== Integer
0 = (IsDiv8 n n :~: 'True) -> Maybe (IsDiv8 n n :~: 'True)
forall a. a -> Maybe a
Just ((Any :~: Any) -> IsDiv8 n n :~: 'True
forall a b. a -> b
unsafeCoerce Any :~: Any
forall k (a :: k). a :~: a
Refl)
| Bool
otherwise = Maybe (IsDiv8 n n :~: 'True)
forall a. Maybe a
Nothing
isAtMost :: (KnownNat value, KnownNat bound)
=> proxy value -> proxy' bound -> Maybe ((value <=? bound) :~: 'True)
isAtMost :: proxy value -> proxy' bound -> Maybe ((value <=? bound) :~: 'True)
isAtMost proxy value
x proxy' bound
y
| proxy value -> Integer
forall (n :: Nat) (proxy :: Nat -> *).
KnownNat n =>
proxy n -> Integer
natVal proxy value
x Integer -> Integer -> Bool
forall a. Ord a => a -> a -> Bool
<= proxy' bound -> Integer
forall (n :: Nat) (proxy :: Nat -> *).
KnownNat n =>
proxy n -> Integer
natVal proxy' bound
y = ((value <=? bound) :~: 'True)
-> Maybe ((value <=? bound) :~: 'True)
forall a. a -> Maybe a
Just ((Any :~: Any) -> (value <=? bound) :~: 'True
forall a b. a -> b
unsafeCoerce Any :~: Any
forall k (a :: k). a :~: a
Refl)
| Bool
otherwise = Maybe ((value <=? bound) :~: 'True)
forall a. Maybe a
Nothing
isAtLeast :: (KnownNat value, KnownNat bound)
=> proxy value -> proxy' bound -> Maybe ((bound <=? value) :~: 'True)
isAtLeast :: proxy value -> proxy' bound -> Maybe ((bound <=? value) :~: 'True)
isAtLeast = (proxy' bound
-> proxy value -> Maybe ((bound <=? value) :~: 'True))
-> proxy value
-> proxy' bound
-> Maybe ((bound <=? value) :~: 'True)
forall a b c. (a -> b -> c) -> b -> a -> c
flip proxy' bound -> proxy value -> Maybe ((bound <=? value) :~: 'True)
forall (value :: Nat) (bound :: Nat) (proxy :: Nat -> *)
(proxy' :: Nat -> *).
(KnownNat value, KnownNat bound) =>
proxy value -> proxy' bound -> Maybe ((value <=? bound) :~: 'True)
isAtMost