https://github.com/project-everest/hacl-star
Raw File
Tip revision: 0367f98944bde8ef286819a02431cffbc5f19d44 authored by Victor Dumitrescu on 28 April 2021, 19:35:07 UTC
JS functions don't return promises
Tip revision: 0367f98
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