https://github.com/project-everest/hacl-star
Raw File
Tip revision: 89273e7da1ffa809cf2acb9513fa643b3faaedb4 authored by Victor Dumitrescu on 03 November 2020, 14:17:27 UTC
Merge branch 'master' of github.com:project-everest/hacl-star into vdum_wasm
Tip revision: 89273e7
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