https://github.com/project-everest/hacl-star
Raw File
Tip revision: b5343363688fbe0e3cdc0c488188708f09eb8a14 authored by Dzomo, the Everest Yak on 27 October 2020, 08:25:56 UTC
[CI] regenerate hints and dist
Tip revision: b534336
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