crypto-pubkey-0.1.3: Public Key cryptography

PortabilityGood
Stabilityexperimental
MaintainerVincent Hanquez <vincent@snarc.org>
Safe HaskellNone

Crypto.PubKey.RSA

Contents

Description

 

Synopsis

Documentation

data Error Source

error possible during encryption, decryption or signing.

Constructors

MessageSizeIncorrect

the message to decrypt is not of the correct size (need to be == private_size)

MessageTooLong

the message to encrypt is too long

MessageNotRecognized

the message decrypted doesn't have a PKCS15 structure (0 2 .. 0 msg)

SignatureTooLong

the message's digest is too long

InvalidParameters

some parameters lead to breaking assumptions.

Instances

data PublicKey

Represent a RSA public key

Constructors

PublicKey 

Fields

public_size :: Int

size of key in bytes

public_n :: Integer

public p*q

public_e :: Integer

public exponant e

data PrivateKey

Represent a RSA private key.

Only the pub, d fields are mandatory to fill.

p, q, dP, dQ, qinv are by-product during RSA generation, but are useful to record here to speed up massively the decrypt and sign operation.

implementations can leave optional fields to 0.

Constructors

PrivateKey 

Fields

private_pub :: PublicKey

public part of a private key (size, n and e)

private_d :: Integer

private exponant d

private_p :: Integer

p prime number

private_q :: Integer

q prime number

private_dP :: Integer

d mod (p-1)

private_dQ :: Integer

d mod (q-1)

private_qinv :: Integer

q^(-1) mod p

data Blinder Source

Blinder which is used to obfuscate the timing of the decryption primitive (used by decryption and signing).

Constructors

Blinder !Integer !Integer 

Instances

generation function

generateWith :: (Integer, Integer) -> Int -> Integer -> (PublicKey, PrivateKey)Source

generate a public key and private key with p and q.

p and q need to be distinct primes numbers.

e need to be coprime to phi=(p-1)*(q-1). a small hamming weight results in better performance. 0x10001 is a popular choice. 3 is popular as well, but proven to not be as secure for some cases.

generate :: CPRG g => g -> Int -> Integer -> ((PublicKey, PrivateKey), g)Source

generate a pair of (private, public) key of size in bytes.

generateBlinderSource

Arguments

:: CPRG g 
=> g

CPRG to use.

-> Integer

RSA public N parameters.

-> (Blinder, g) 

Generate a blinder to use with decryption and signing operation

the unique parameter apart from the random number generator is the public key value N.