File: Unsafe.hs

package info (click to toggle)
haskell-crypto-cipher-types 0.0.9-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 116 kB
  • sloc: haskell: 464; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 450 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
-- |
-- Module      : Crypto.Cipher.Types.Unsafe
-- License     : BSD-style
-- Maintainer  : Vincent Hanquez <vincent@snarc.org>
-- Stability   : Stable
-- Portability : Excellent
--
-- mutable and unsafe interface for Block ciphers.
-- export a BlockCipherIO class
--
module Crypto.Cipher.Types.Unsafe
    ( BlockCipherIO(..)
    , BufferLength
    , PtrDest
    , PtrSource
    , PtrIV
    , onBlock
    ) where

import Crypto.Cipher.Types.BlockIO