Mirage_crypto.Block
Module types for various block cipher modes of operation.
Modes of operation:
module type ECB = sig ... end
Electronic Codebook "mode".
module type CBC = sig ... end
Cipher-block chaining mode.
module type CTR = sig ... end
Counter mode.
module type GCM = sig ... end
Galois/Counter Mode.
module type CCM16 = sig ... end
Counter with CBC-MAC mode.