File: Types.hs

package info (click to toggle)
haskell-drbg 0.5.5-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,708 kB
  • sloc: haskell: 880; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 282 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
module Crypto.Random.DRBG.Types where

import Data.ByteString as B
import Data.ByteString.Lazy as L

type BitLen = Int
type Entropy = B.ByteString
type PersonalizationString = B.ByteString
type Nonce = B.ByteString
type AdditionalInput = B.ByteString
type RandomBits = B.ByteString