https://github.com/project-everest/hacl-star
Raw File
Tip revision: 411e96339b6c3b537b68a9e802d0c8ba49e033b1 authored by Chris Hawblitzel on 31 January 2019, 15:51:03 UTC
Fix makegen.py SConscript generation
Tip revision: 411e963
Hacl.Hash.MD5.fst
module Hacl.Hash.MD5

open Hacl.Hash.Definitions
open Spec.Hash.Definitions

include Hacl.Hash.Core.MD5

friend Hacl.Hash.MD

let update_multi: update_multi_st MD5 = Hacl.Hash.MD.mk_update_multi MD5 update
let update_last: update_last_st MD5 = Hacl.Hash.MD.mk_update_last MD5 update_multi pad
let hash: hash_st MD5 = Hacl.Hash.MD.mk_hash MD5 alloca update_multi update_last finish
back to top