Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Mirage_crypto.Poly1305The poly1305 message authentication code
val empty : key:string -> tempty is the empty context with the given key.
val get : t -> stringget t is the mac corresponding to t.
mac ~key msg is the all-in-one mac computation: get (feed (empty ~key) msg).
val maci : key:string -> string iter -> stringmaci ~key iter is the all-in-one mac computation: get (feedi (empty ~key) iter).