cryptonite-0.26: Cryptography Primitives sink
LicenseBSD-style
MaintainerVincent Hanquez <vincent@snarc.org>
Stabilityexperimental
Portabilityunknown
Safe HaskellNone
LanguageHaskell2010

Crypto.PubKey.Curve25519

Description

Curve25519 support

Synopsis

Documentation

data SecretKey Source #

A Curve25519 Secret key

Instances

Instances details
Eq SecretKey Source # 
Instance details

Defined in Crypto.PubKey.Curve25519

Show SecretKey Source # 
Instance details

Defined in Crypto.PubKey.Curve25519

Methods

showsPrec :: Int -> SecretKey -> ShowS #

show :: SecretKey -> String #

showList :: [SecretKey] -> ShowS #

NFData SecretKey Source # 
Instance details

Defined in Crypto.PubKey.Curve25519

Methods

rnf :: SecretKey -> ()

ByteArrayAccess SecretKey Source # 
Instance details

Defined in Crypto.PubKey.Curve25519

data PublicKey Source #

A Curve25519 public key

Instances

Instances details
Eq PublicKey Source # 
Instance details

Defined in Crypto.PubKey.Curve25519

Show PublicKey Source # 
Instance details

Defined in Crypto.PubKey.Curve25519

Methods

showsPrec :: Int -> PublicKey -> ShowS #

show :: PublicKey -> String #

showList :: [PublicKey] -> ShowS #

NFData PublicKey Source # 
Instance details

Defined in Crypto.PubKey.Curve25519

Methods

rnf :: PublicKey -> ()

ByteArrayAccess PublicKey Source # 
Instance details

Defined in Crypto.PubKey.Curve25519

data DhSecret Source #

A Curve25519 Diffie Hellman secret related to a public key and a secret key.

Instances

Instances details
Eq DhSecret Source # 
Instance details

Defined in Crypto.PubKey.Curve25519

Show DhSecret Source # 
Instance details

Defined in Crypto.PubKey.Curve25519

Methods

showsPrec :: Int -> DhSecret -> ShowS #

show :: DhSecret -> String #

showList :: [DhSecret] -> ShowS #

NFData DhSecret Source # 
Instance details

Defined in Crypto.PubKey.Curve25519

Methods

rnf :: DhSecret -> ()

ByteArrayAccess DhSecret Source # 
Instance details

Defined in Crypto.PubKey.Curve25519

Smart constructors

dhSecret :: ByteArrayAccess b => b -> CryptoFailable DhSecret Source #

Create a DhSecret from a bytearray object

publicKey :: ByteArrayAccess bs => bs -> CryptoFailable PublicKey Source #

Try to build a public key from a bytearray

secretKey :: ByteArrayAccess bs => bs -> CryptoFailable SecretKey Source #

Try to build a secret key from a bytearray

Methods

dh :: PublicKey -> SecretKey -> DhSecret Source #

Compute the Diffie Hellman secret from a public key and a secret key.

This implementation may return an all-zero value as it does not check for the condition.

toPublic :: SecretKey -> PublicKey Source #

Create a public key from a secret key

generateSecretKey :: MonadRandom m => m SecretKey Source #

Generate a secret key.