https://github.com/project-everest/hacl-star
Raw File
Tip revision: c2b32fc2c457935155d88ce0ed49f24b094a3a0a authored by Christoph M. Wintersteiger on 09 September 2020, 11:06:52 UTC
Merge branch 'master' into cwinter_missing_module
Tip revision: c2b32fc
Hacl.HKDF.Blake2s_128.fst
module Hacl.HKDF.Blake2s_128

open Spec.Hash.Definitions
open Hacl.HKDF

#set-options "--z3rlimit 20 --fuel 0 --ifuel 0"

let expand_blake2s_128: expand_st Blake2S =
  mk_expand Blake2S Hacl.HMAC.Blake2s_128.compute_blake2s_128

let extract_blake2s_128: extract_st Blake2S =
  mk_extract Blake2S Hacl.HMAC.Blake2s_128.compute_blake2s_128
back to top