Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Cipher_block.SModule types for various block cipher modes of operation.
Raw block cipher in all its glory.
Make absolutely sure to check the arguments. Behavior is unspecified on invalid inputs.
Modes of operation:
module type ECB = sig ... endElectronic Codebook "mode".
module type CBC = sig ... endCipher-block chaining mode.
module type CTR = sig ... endCounter mode.
module type GCM = sig ... endGalois/Counter Mode.
module type CCM16 = sig ... endCounter with CBC-MAC mode.