-- | This sets up the recommended implementation of Sha384. {-# OPTIONS_GHC -fno-warn-orphans #-} -- -- The orphan instance declaration separates the implementation and -- setting the recommended instances. Therefore, we ignore the warning. -- module Raaz.Hash.Sha384.Recommendation where import Raaz.Core import Raaz.Hash.Sha384.Internal import qualified Raaz.Hash.Sha384.Implementation.CPortable as CPortable -- | Recommended implementation for SHA384. instance Recommendation SHA384 where recommended :: SHA384 -> Implementation SHA384 recommended SHA384 _ = Implementation SHA384 CPortable.implementation