https://github.com/project-everest/hacl-star
Raw File
Tip revision: cb3e3b460978490c3736c6a429c889e72c8ce871 authored by Nikhil Swamy on 08 October 2020, 21:29:08 UTC
bump rlimit ... failing everest build
Tip revision: cb3e3b4
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