https://github.com/project-everest/hacl-star
Raw File
Tip revision: c75241167520d6d142553798c563b62854c6687e authored by Son Ho on 05 August 2020, 09:58:55 UTC
Remove some commented code
Tip revision: c752411
Lib.RandomBuffer.System.fsti
module Lib.RandomBuffer.System

open Lib.IntTypes
open Lib.Buffer

open FStar.HyperStack.All


val randombytes:
    buf: buffer uint8
  -> len: size_t{v len == length buf} ->
  Stack bool
  (requires (fun h -> live h buf))
  (ensures (fun h0 _ h1 -> modifies1 buf h0 h1))
back to top