https://github.com/project-everest/hacl-star
Raw File
Tip revision: 55392d3605bed233d2b23137cc35dfecd6a60e7b authored by marina polubelova on 15 July 2021, 09:51:22 UTC
rm cinline from bn_sub_mod and bn_add_mod
Tip revision: 55392d3
Hacl.HKDF.Blake2b_256.fst
module Hacl.HKDF.Blake2b_256

open Spec.Hash.Definitions
open Hacl.HKDF

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

let expand_blake2b_256: expand_st Blake2B =
  mk_expand Blake2B Hacl.HMAC.Blake2b_256.compute_blake2b_256

let extract_blake2b_256: extract_st Blake2B =
  mk_extract Blake2B Hacl.HMAC.Blake2b_256.compute_blake2b_256
back to top