https://github.com/project-everest/hacl-star
Raw File
Tip revision: 94a806c45df2dae4c7498f0642d4717802946617 authored by Jonathan Protzenko on 28 September 2020, 15:54:51 UTC
Remove stale bindings
Tip revision: 94a806c
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