This makes the API uniform for both D-H functions, avoids confusion and leaves the name Ed448 available for EdDSA.
21 lines
547 B
Haskell
21 lines
547 B
Haskell
-- |
|
|
-- Module : Crypto.PubKey.Ed448
|
|
-- License : BSD-style
|
|
-- Maintainer : John Galt <jgalt@centromere.net>
|
|
-- Stability : experimental
|
|
-- Portability : unknown
|
|
--
|
|
-- Ed448 support
|
|
--
|
|
-- /Functions and types exported here will be DEPRECATED in a future version./
|
|
-- For Diffie-Hellman over curve448 please use module "Crypto.PubKey.Curve448"
|
|
-- instead.
|
|
--
|
|
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
|
|
{-# LANGUAGE MagicHash #-}
|
|
module Crypto.PubKey.Ed448
|
|
( module Crypto.PubKey.Curve448
|
|
) where
|
|
|
|
import Crypto.PubKey.Curve448
|