file_name
stringlengths
5
52
name
stringlengths
4
95
original_source_type
stringlengths
0
23k
source_type
stringlengths
9
23k
source_definition
stringlengths
9
57.9k
source
dict
source_range
dict
file_context
stringlengths
0
721k
dependencies
dict
opens_and_abbrevs
listlengths
2
94
vconfig
dict
interleaved
bool
1 class
verbose_type
stringlengths
1
7.42k
effect
stringclasses
118 values
effect_flags
listlengths
0
2
mutual_with
listlengths
0
11
ideal_premises
listlengths
0
236
proof_features
listlengths
0
1
is_simple_lemma
bool
2 classes
is_div
bool
2 classes
is_proof
bool
2 classes
is_simply_typed
bool
2 classes
is_type
bool
2 classes
partial_definition
stringlengths
5
3.99k
completed_definiton
stringlengths
1
1.63M
isa_cross_project_example
bool
1 class
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.balance
val balance (#a: eqtype) (#b: Type) (t: tree a b) : tree a b
val balance (#a: eqtype) (#b: Type) (t: tree a b) : tree a b
let balance (#a:eqtype) (#b:Type) (t:tree a b) : tree a b = match t with | Node _ _ _ l r -> let hl = height l in let hr = height r in if hl >= hr + 2 then rotate_r t else if hr >= hl + 2 then rotate_l t else t | _ -> t
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 10, "end_line": 39, "start_col": 0, "start_line": 31 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h let mkNode (#a:eqty...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
t: Vale.Lib.MapTree.tree a b -> Vale.Lib.MapTree.tree a b
Prims.Tot
[ "total" ]
[]
[ "Prims.eqtype", "Vale.Lib.MapTree.tree", "Prims.nat", "Prims.op_GreaterThanOrEqual", "Prims.op_Addition", "Vale.Lib.MapTree.rotate_r", "Prims.bool", "Vale.Lib.MapTree.rotate_l", "Vale.Lib.MapTree.height" ]
[]
false
false
false
false
false
let balance (#a: eqtype) (#b: Type) (t: tree a b) : tree a b =
match t with | Node _ _ _ l r -> let hl = height l in let hr = height r in if hl >= hr + 2 then rotate_r t else if hr >= hl + 2 then rotate_l t else t | _ -> t
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.rotate_l
val rotate_l (#a: eqtype) (#b: Type) (t: tree a b) : tree a b
val rotate_l (#a: eqtype) (#b: Type) (t: tree a b) : tree a b
let rotate_l (#a:eqtype) (#b:Type) (t:tree a b) : tree a b = match t with | Node kl vl _ l (Node kr vr _ lr rr) -> mkNode kr vr (mkNode kl vl l lr) rr | _ -> t
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 10, "end_line": 24, "start_col": 0, "start_line": 21 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h let mkNode (#a:eqty...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
t: Vale.Lib.MapTree.tree a b -> Vale.Lib.MapTree.tree a b
Prims.Tot
[ "total" ]
[]
[ "Prims.eqtype", "Vale.Lib.MapTree.tree", "Prims.nat", "Vale.Lib.MapTree.mkNode" ]
[]
false
false
false
false
false
let rotate_l (#a: eqtype) (#b: Type) (t: tree a b) : tree a b =
match t with | Node kl vl _ l (Node kr vr _ lr rr) -> mkNode kr vr (mkNode kl vl l lr) rr | _ -> t
false
Vale.Stdcalls.X64.Poly.fsti
Vale.Stdcalls.X64.Poly.tuint64
val tuint64 : Vale.Interop.Base.td
let tuint64 = TD_Base TUInt64
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Poly.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 29, "end_line": 44, "start_col": 0, "start_line": 44 }
module Vale.Stdcalls.X64.Poly open FStar.Mul val z3rlimit_hack (x:nat) : squash (x < x + x + 1) #reset-options "--z3rlimit 50" open FStar.HyperStack.ST module HS = FStar.HyperStack module B = LowStar.Buffer module IB = LowStar.ImmutableBuffer module DV = LowStar.BufferView.Down open Vale.Def.Types_s open Vale.Intero...
{ "checked_file": "/", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Poly1305.X64.fsti.checked", "Vale.Poly1305.Math.fsti.checked", "Vale....
[ { "abbrev": false, "full_module": "Vale.Poly1305.Math", "short_module": null }, { "abbrev": true, "full_module": "Vale.Poly1305.X64", "short_module": "PO" }, { "abbrev": true, "full_module": "Vale.X64.Machine_s", "short_module": "MS" }, { "abbrev": true, "full...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
Vale.Interop.Base.td
Prims.Tot
[ "total" ]
[]
[ "Vale.Interop.Base.TD_Base", "Vale.Arch.HeapTypes_s.TUInt64" ]
[]
false
false
false
true
false
let tuint64 =
TD_Base TUInt64
false
LowParse.Spec.Bytes.fst
LowParse.Spec.Bytes.serialize_bounded_vlgenbytes
val serialize_bounded_vlgenbytes (min: nat) (max: nat{min <= max /\ max > 0 /\ max < 4294967296}) (#kk: parser_kind) (#pk: parser kk (bounded_int32 min max)) (sk: serializer pk {kk.parser_kind_subkind == Some ParserStrong}) : Tot (serializer (parse_bounded_vlgenbytes min max pk))
val serialize_bounded_vlgenbytes (min: nat) (max: nat{min <= max /\ max > 0 /\ max < 4294967296}) (#kk: parser_kind) (#pk: parser kk (bounded_int32 min max)) (sk: serializer pk {kk.parser_kind_subkind == Some ParserStrong}) : Tot (serializer (parse_bounded_vlgenbytes min max pk))
let serialize_bounded_vlgenbytes (min: nat) (max: nat { min <= max /\ max > 0 /\ max < 4294967296 }) (#kk: parser_kind) (#pk: parser kk (bounded_int32 min max)) (sk: serializer pk { kk.parser_kind_subkind == Some ParserStrong }) : Tot (serializer (parse_bounded_vlgenbytes min max pk)) = serialize_synth (p...
{ "file_name": "src/lowparse/LowParse.Spec.Bytes.fst", "git_rev": "00217c4a89f5ba56002ba9aa5b4a9d5903bfe9fa", "git_url": "https://github.com/project-everest/everparse.git", "project_name": "everparse" }
{ "end_col": 6, "end_line": 297, "start_col": 0, "start_line": 285 }
module LowParse.Spec.Bytes include LowParse.Spec.VLGen module B32 = LowParse.Bytes32 module Seq = FStar.Seq module U32 = FStar.UInt32 #set-options "--z3rlimit 128 --max_fuel 64 --max_ifuel 64" let lt_pow2_32 (x: nat) : Lemma (x < 4294967296 <==> x < pow2 32) = () #reset-options let parse_flbytes_gen (sz: nat...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "LowParse.Spec.VLGen.fst.checked", "LowParse.Bytes32.fst.checked", "FStar.UInt32.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Classical.fsti.checked...
[ { "abbrev": true, "full_module": "FStar.UInt32", "short_module": "U32" }, { "abbrev": true, "full_module": "FStar.Seq", "short_module": "Seq" }, { "abbrev": true, "full_module": "LowParse.Bytes32", "short_module": "B32" }, { "abbrev": false, "full_module": "Lo...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
min: Prims.nat -> max: Prims.nat{min <= max /\ max > 0 /\ max < 4294967296} -> sk: LowParse.Spec.Base.serializer pk { Mkparser_kind'?.parser_kind_subkind kk == FStar.Pervasives.Native.Some LowParse.Spec.Base.ParserStrong } -> LowParse.Spec.Base.serializer (LowParse.Spec.Bytes.pars...
Prims.Tot
[ "total" ]
[]
[ "Prims.nat", "Prims.l_and", "Prims.b2t", "Prims.op_LessThanOrEqual", "Prims.op_GreaterThan", "Prims.op_LessThan", "LowParse.Spec.Base.parser_kind", "LowParse.Spec.Base.parser", "LowParse.Spec.BoundedInt.bounded_int32", "LowParse.Spec.Base.serializer", "Prims.eq2", "FStar.Pervasives.Native.opti...
[]
false
false
false
false
false
let serialize_bounded_vlgenbytes (min: nat) (max: nat{min <= max /\ max > 0 /\ max < 4294967296}) (#kk: parser_kind) (#pk: parser kk (bounded_int32 min max)) (sk: serializer pk {kk.parser_kind_subkind == Some ParserStrong}) : Tot (serializer (parse_bounded_vlgenbytes min max pk)) =
serialize_synth (parse_bounded_vlgen min max pk serialize_all_bytes) (synth_bounded_vlbytes min max) (serialize_bounded_vlgen min max sk serialize_all_bytes) (synth_bounded_vlbytes_recip min max) ()
false
ElGamal.fst
ElGamal.bij'
val bij' : m: ElGamal.Group.group -> FStar.DM4F.Random.bijection
let bij' (m:group) = let f = fun h -> upd h (to_id 0) ((sel h (to_id 0) - log m) % q) in let finv = fun h -> upd h (to_id 0) ((sel h (to_id 0) + log m) % q) in Bijection f finv
{ "file_name": "examples/rel/ElGamal.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 18, "end_line": 26, "start_col": 0, "start_line": 23 }
(* Copyright 2008-2018 Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agre...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.DM4F.Random.fst.checked", "FStar.DM4F.Heap.Random.fsti.checked", "ElGamal.Group.fst.checked" ], "interface_file": false, "source_file": "ElGamal.fst" }
[ { "abbrev": false, "full_module": "ElGamal.Group", "short_module": null }, { "abbrev": false, "full_module": "FStar.DM4F.Random", "short_module": null }, { "abbrev": false, "full_module": "FStar.DM4F.Heap.Random", "short_module": null }, { "abbrev": false, "fu...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
m: ElGamal.Group.group -> FStar.DM4F.Random.bijection
Prims.Tot
[ "total" ]
[]
[ "ElGamal.Group.group", "FStar.DM4F.Random.Bijection", "FStar.DM4F.Heap.Random.tape", "FStar.DM4F.Heap.Random.upd", "FStar.DM4F.Heap.Random.to_id", "Prims.op_Modulus", "Prims.op_Addition", "FStar.DM4F.Heap.Random.sel", "ElGamal.Group.log", "FStar.DM4F.Heap.Random.q", "Prims.op_Subtraction", "FS...
[]
false
false
false
true
false
let bij' (m: group) =
let f = fun h -> upd h (to_id 0) ((sel h (to_id 0) - log m) % q) in let finv = fun h -> upd h (to_id 0) ((sel h (to_id 0) + log m) % q) in Bijection f finv
false
LowParse.Spec.Bytes.fst
LowParse.Spec.Bytes.length_serialize_bounded_vlbytes'
val length_serialize_bounded_vlbytes' (min: nat) (max: nat{min <= max /\ max > 0 /\ max < 4294967296}) (l: nat{l >= log256' max /\ l <= 4}) (x: parse_bounded_vlbytes_t min max) : Lemma (Seq.length (serialize (serialize_bounded_vlbytes' min max l) x) == l + B32.length x)
val length_serialize_bounded_vlbytes' (min: nat) (max: nat{min <= max /\ max > 0 /\ max < 4294967296}) (l: nat{l >= log256' max /\ l <= 4}) (x: parse_bounded_vlbytes_t min max) : Lemma (Seq.length (serialize (serialize_bounded_vlbytes' min max l) x) == l + B32.length x)
let length_serialize_bounded_vlbytes' (min: nat) (max: nat { min <= max /\ max > 0 /\ max < 4294967296 } ) (l: nat { l >= log256' max /\ l <= 4 } ) (x: parse_bounded_vlbytes_t min max) : Lemma (Seq.length (serialize (serialize_bounded_vlbytes' min max l) x) == l + B32.length x) = serialize_synth_eq (parse...
{ "file_name": "src/lowparse/LowParse.Spec.Bytes.fst", "git_rev": "00217c4a89f5ba56002ba9aa5b4a9d5903bfe9fa", "git_url": "https://github.com/project-everest/everparse.git", "project_name": "everparse" }
{ "end_col": 5, "end_line": 267, "start_col": 0, "start_line": 254 }
module LowParse.Spec.Bytes include LowParse.Spec.VLGen module B32 = LowParse.Bytes32 module Seq = FStar.Seq module U32 = FStar.UInt32 #set-options "--z3rlimit 128 --max_fuel 64 --max_ifuel 64" let lt_pow2_32 (x: nat) : Lemma (x < 4294967296 <==> x < pow2 32) = () #reset-options let parse_flbytes_gen (sz: nat...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "LowParse.Spec.VLGen.fst.checked", "LowParse.Bytes32.fst.checked", "FStar.UInt32.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Classical.fsti.checked...
[ { "abbrev": true, "full_module": "FStar.UInt32", "short_module": "U32" }, { "abbrev": true, "full_module": "FStar.Seq", "short_module": "Seq" }, { "abbrev": true, "full_module": "LowParse.Bytes32", "short_module": "B32" }, { "abbrev": false, "full_module": "Lo...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
min: Prims.nat -> max: Prims.nat{min <= max /\ max > 0 /\ max < 4294967296} -> l: Prims.nat{l >= LowParse.Spec.BoundedInt.log256' max /\ l <= 4} -> x: LowParse.Spec.Bytes.parse_bounded_vlbytes_t min max -> FStar.Pervasives.Lemma (ensures FStar.Seq.Base.length (LowParse.Spec.Base.serialize (...
FStar.Pervasives.Lemma
[ "lemma" ]
[]
[ "Prims.nat", "Prims.l_and", "Prims.b2t", "Prims.op_LessThanOrEqual", "Prims.op_GreaterThan", "Prims.op_LessThan", "Prims.op_GreaterThanOrEqual", "LowParse.Spec.BoundedInt.log256'", "LowParse.Spec.Bytes.parse_bounded_vlbytes_t", "LowParse.Spec.Combinators.serialize_synth_eq", "LowParse.Spec.VLDat...
[]
true
false
true
false
false
let length_serialize_bounded_vlbytes' (min: nat) (max: nat{min <= max /\ max > 0 /\ max < 4294967296}) (l: nat{l >= log256' max /\ l <= 4}) (x: parse_bounded_vlbytes_t min max) : Lemma (Seq.length (serialize (serialize_bounded_vlbytes' min max l) x) == l + B32.length x) =
serialize_synth_eq (parse_bounded_vlbytes_aux min max l) (synth_bounded_vlbytes min max) (serialize_bounded_vlbytes_aux min max l) (synth_bounded_vlbytes_recip min max) () x
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.mkNode
val mkNode (#a: eqtype) (#b: Type) (key: a) (value: b) (l r: tree a b) : tree a b
val mkNode (#a: eqtype) (#b: Type) (key: a) (value: b) (l r: tree a b) : tree a b
let mkNode (#a:eqtype) (#b:Type) (key:a) (value:b) (l r:tree a b) : tree a b = let hl = height l in let hr = height r in let h = if hl > hr then hl else hr in Node key value (h + 1) l r
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 28, "end_line": 19, "start_col": 0, "start_line": 15 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
key: a -> value: b -> l: Vale.Lib.MapTree.tree a b -> r: Vale.Lib.MapTree.tree a b -> Vale.Lib.MapTree.tree a b
Prims.Tot
[ "total" ]
[]
[ "Prims.eqtype", "Vale.Lib.MapTree.tree", "Vale.Lib.MapTree.Node", "Prims.op_Addition", "Prims.int", "Prims.op_GreaterThan", "Prims.bool", "Prims.nat", "Vale.Lib.MapTree.height" ]
[]
false
false
false
false
false
let mkNode (#a: eqtype) (#b: Type) (key: a) (value: b) (l r: tree a b) : tree a b =
let hl = height l in let hr = height r in let h = if hl > hr then hl else hr in Node key value (h + 1) l r
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.is_lt_option
val is_lt_option (#a: eqtype) (is_le: (a -> a -> bool)) (x y: option a) : bool
val is_lt_option (#a: eqtype) (is_le: (a -> a -> bool)) (x y: option a) : bool
let is_lt_option (#a:eqtype) (is_le:a -> a -> bool) (x y:option a) : bool = match (x, y) with | (Some x, Some y) -> is_le x y && x <> y | _ -> true
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 13, "end_line": 66, "start_col": 0, "start_line": 63 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h let mkNode (#a:eqty...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
is_le: (_: a -> _: a -> Prims.bool) -> x: FStar.Pervasives.Native.option a -> y: FStar.Pervasives.Native.option a -> Prims.bool
Prims.Tot
[ "total" ]
[]
[ "Prims.eqtype", "Prims.bool", "FStar.Pervasives.Native.option", "FStar.Pervasives.Native.Mktuple2", "Prims.op_AmpAmp", "Prims.op_disEquality", "FStar.Pervasives.Native.tuple2" ]
[]
false
false
false
false
false
let is_lt_option (#a: eqtype) (is_le: (a -> a -> bool)) (x y: option a) : bool =
match (x, y) with | Some x, Some y -> is_le x y && x <> y | _ -> true
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.map
val map (a:eqtype) (b:Type u#a) : Type u#a
val map (a:eqtype) (b:Type u#a) : Type u#a
let map = map'
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 14, "end_line": 144, "start_col": 0, "start_line": 144 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h let mkNode (#a:eqty...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
a: Prims.eqtype -> b: Type -> Type
Prims.Tot
[ "total" ]
[]
[ "Vale.Lib.MapTree.map'" ]
[]
false
false
false
true
true
let map =
map'
false
ElGamal.fst
ElGamal.elgamal_equiv
val elgamal_equiv (m c: group) : Lemma (let f1 h = reify (elgamal m) h in let f2 h = reify (elgamal' m) h in mass f1 (point c) == mass f2 (point c))
val elgamal_equiv (m c: group) : Lemma (let f1 h = reify (elgamal m) h in let f2 h = reify (elgamal' m) h in mass f1 (point c) == mass f2 (point c))
let elgamal_equiv (m c:group) : Lemma (let f1 h = reify (elgamal m) h in let f2 h = reify (elgamal' m) h in mass f1 (point c) == mass f2 (point c)) = let f1 h = reify (elgamal m) h in let f2 h = reify (elgamal' m) h in pr_eq f1 f2 (point c) (point c) (bij' m)
{ "file_name": "examples/rel/ElGamal.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 44, "end_line": 64, "start_col": 0, "start_line": 57 }
(* Copyright 2008-2018 Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agre...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.DM4F.Random.fst.checked", "FStar.DM4F.Heap.Random.fsti.checked", "ElGamal.Group.fst.checked" ], "interface_file": false, "source_file": "ElGamal.fst" }
[ { "abbrev": false, "full_module": "ElGamal.Group", "short_module": null }, { "abbrev": false, "full_module": "FStar.DM4F.Random", "short_module": null }, { "abbrev": false, "full_module": "FStar.DM4F.Heap.Random", "short_module": null }, { "abbrev": false, "fu...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
m: ElGamal.Group.group -> c: ElGamal.Group.group -> FStar.Pervasives.Lemma (ensures (let f1 h = reify (ElGamal.elgamal m) h in let f2 h = reify (ElGamal.elgamal' m) h in FStar.DM4F.Random.mass f1 (FStar.DM4F.Random.point c) == FStar.DM4F.Random.mass f2 (FStar.DM4F.Random.point c)))
FStar.Pervasives.Lemma
[ "lemma" ]
[]
[ "ElGamal.Group.group", "FStar.DM4F.Random.pr_eq", "FStar.Pervasives.Native.option", "FStar.DM4F.Random.point", "ElGamal.bij'", "FStar.Pervasives.Native.tuple2", "FStar.DM4F.Heap.Random.id", "FStar.DM4F.Heap.Random.tape", "ElGamal.elgamal'", "ElGamal.elgamal", "Prims.unit", "Prims.l_True", "P...
[]
false
false
true
false
false
let elgamal_equiv (m c: group) : Lemma (let f1 h = reify (elgamal m) h in let f2 h = reify (elgamal' m) h in mass f1 (point c) == mass f2 (point c)) =
let f1 h = reify (elgamal m) h in let f2 h = reify (elgamal' m) h in pr_eq f1 f2 (point c) (point c) (bij' m)
false
ElGamal.fst
ElGamal.elgamal_prop
val elgamal_prop (m: group) (z: elem) : Lemma (ensures (g ^ ((z - log m) % q)) * m == g ^ z) [SMTPat ((g ^ (z - log m) % q) * m)]
val elgamal_prop (m: group) (z: elem) : Lemma (ensures (g ^ ((z - log m) % q)) * m == g ^ z) [SMTPat ((g ^ (z - log m) % q) * m)]
let elgamal_prop (m:group) (z:elem) : Lemma (ensures (g^((z - log m) %q)) * m == g^z) [SMTPat ((g^(z - log m) % q) * m) ] = pow_log m; mul_pow ((z - log m) % q) (log m); mod_minus_plus z (log m)
{ "file_name": "examples/rel/ElGamal.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 28, "end_line": 44, "start_col": 0, "start_line": 38 }
(* Copyright 2008-2018 Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agre...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.DM4F.Random.fst.checked", "FStar.DM4F.Heap.Random.fsti.checked", "ElGamal.Group.fst.checked" ], "interface_file": false, "source_file": "ElGamal.fst" }
[ { "abbrev": false, "full_module": "ElGamal.Group", "short_module": null }, { "abbrev": false, "full_module": "FStar.DM4F.Random", "short_module": null }, { "abbrev": false, "full_module": "FStar.DM4F.Heap.Random", "short_module": null }, { "abbrev": false, "fu...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
m: ElGamal.Group.group -> z: FStar.DM4F.Heap.Random.elem -> FStar.Pervasives.Lemma (ensures (ElGamal.Group.g ^ (z - ElGamal.Group.log m) % FStar.DM4F.Heap.Random.q) * m == ElGamal.Group.g ^ z) [SMTPat ((ElGamal.Group.g ^ (z - ElGamal.Group.log m) % FStar.DM4F.Heap.Random.q) * m)]
FStar.Pervasives.Lemma
[ "lemma" ]
[]
[ "ElGamal.Group.group", "FStar.DM4F.Heap.Random.elem", "ElGamal.Group.mod_minus_plus", "ElGamal.Group.log", "Prims.unit", "ElGamal.Group.mul_pow", "Prims.op_Modulus", "Prims.op_Subtraction", "FStar.DM4F.Heap.Random.q", "ElGamal.Group.pow_log", "Prims.l_True", "Prims.squash", "Prims.eq2", "E...
[]
true
false
true
false
false
let elgamal_prop (m: group) (z: elem) : Lemma (ensures (g ^ ((z - log m) % q)) * m == g ^ z) [SMTPat ((g ^ (z - log m) % q) * m)] =
pow_log m; mul_pow ((z - log m) % q) (log m); mod_minus_plus z (log m)
false
Vale.Stdcalls.X64.Poly.fsti
Vale.Stdcalls.X64.Poly.code_poly
val code_poly : Vale.X64.Decls.va_code
let code_poly = PO.va_code_Poly1305 IA.win
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Poly.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 42, "end_line": 111, "start_col": 0, "start_line": 111 }
module Vale.Stdcalls.X64.Poly open FStar.Mul val z3rlimit_hack (x:nat) : squash (x < x + x + 1) #reset-options "--z3rlimit 50" open FStar.HyperStack.ST module HS = FStar.HyperStack module B = LowStar.Buffer module IB = LowStar.ImmutableBuffer module DV = LowStar.BufferView.Down open Vale.Def.Types_s open Vale.Intero...
{ "checked_file": "/", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Poly1305.X64.fsti.checked", "Vale.Poly1305.Math.fsti.checked", "Vale....
[ { "abbrev": true, "full_module": "Vale.X64.State", "short_module": "VS" }, { "abbrev": false, "full_module": "Vale.Poly1305.Math", "short_module": null }, { "abbrev": true, "full_module": "Vale.Poly1305.X64", "short_module": "PO" }, { "abbrev": true, "full_mod...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
Vale.X64.Decls.va_code
Prims.Tot
[ "total" ]
[]
[ "Vale.Poly1305.X64.va_code_Poly1305", "Vale.Interop.Assumptions.win" ]
[]
false
false
false
true
false
let code_poly =
PO.va_code_Poly1305 IA.win
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.get
val get (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (key: a) : option b
val get (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (key: a) : option b
let rec get (#a:eqtype) (#b:Type) (is_le:a -> a -> bool) (t:tree a b) (key:a) : option b = match t with | Empty -> None | Node k v h l r -> if key = k then Some v else if is_le key k then get is_le l key else get is_le r key
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 21, "end_line": 49, "start_col": 0, "start_line": 41 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h let mkNode (#a:eqty...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
is_le: (_: a -> _: a -> Prims.bool) -> t: Vale.Lib.MapTree.tree a b -> key: a -> FStar.Pervasives.Native.option b
Prims.Tot
[ "total" ]
[]
[ "Prims.eqtype", "Prims.bool", "Vale.Lib.MapTree.tree", "FStar.Pervasives.Native.None", "Prims.nat", "Prims.op_Equality", "FStar.Pervasives.Native.Some", "Vale.Lib.MapTree.get", "FStar.Pervasives.Native.option" ]
[ "recursion" ]
false
false
false
false
false
let rec get (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (key: a) : option b =
match t with | Empty -> None | Node k v h l r -> if key = k then Some v else if is_le key k then get is_le l key else get is_le r key
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.height
val height (#a: eqtype) (#b: Type) (t: tree a b) : nat
val height (#a: eqtype) (#b: Type) (t: tree a b) : nat
let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 23, "end_line": 13, "start_col": 0, "start_line": 10 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
t: Vale.Lib.MapTree.tree a b -> Prims.nat
Prims.Tot
[ "total" ]
[]
[ "Prims.eqtype", "Vale.Lib.MapTree.tree", "Prims.nat" ]
[]
false
false
false
false
false
let height (#a: eqtype) (#b: Type) (t: tree a b) : nat =
match t with | Empty -> 0 | Node _ _ h _ _ -> h
false
Hacl.Impl.Frodo.Gen.fst
Hacl.Impl.Frodo.Gen.frodo_gen_matrix_shake_4x1
val frodo_gen_matrix_shake_4x1: n:size_t{v n * v n <= max_size_t /\ v n <= maxint U16} -> tmp_seed:lbytes (18ul *! 4ul) -> r:lbytes (size 8 *! n) -> i:size_t{v i < v n / 4} -> res:matrix_t n n -> Stack unit (requires fun h -> tmp_seed4_pre h tmp_seed /\ live h tmp_seed /\ live h res /\ live h r ...
val frodo_gen_matrix_shake_4x1: n:size_t{v n * v n <= max_size_t /\ v n <= maxint U16} -> tmp_seed:lbytes (18ul *! 4ul) -> r:lbytes (size 8 *! n) -> i:size_t{v i < v n / 4} -> res:matrix_t n n -> Stack unit (requires fun h -> tmp_seed4_pre h tmp_seed /\ live h tmp_seed /\ live h res /\ live h r ...
let frodo_gen_matrix_shake_4x1 n tmp_seed r i res = let r0 = sub r (size 0 *! n) (size 2 *! n) in let r1 = sub r (size 2 *! n) (size 2 *! n) in let r2 = sub r (size 4 *! n) (size 2 *! n) in let r3 = sub r (size 6 *! n) (size 2 *! n) in frodo_gen_matrix_shake_4x1_get_r n tmp_seed r0 r1 r2 r3 i; [@inline_let...
{ "file_name": "code/frodo/Hacl.Impl.Frodo.Gen.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 3, "end_line": 235, "start_col": 0, "start_line": 220 }
module Hacl.Impl.Frodo.Gen open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open LowStar.Buffer open Lib.IntTypes open Lib.Buffer open Lib.ByteBuffer open Hacl.Impl.Matrix module ST = FStar.HyperStack.ST module B = LowStar.Buffer module LSeq = Lib.Sequence module BSeq = Lib.ByteSequence module Loops =...
{ "checked_file": "/", "dependencies": [ "Spec.Frodo.Lemmas.fst.checked", "Spec.Frodo.Gen.fst.checked", "prims.fst.checked", "LowStar.Buffer.fst.checked", "Lib.Sequence.fsti.checked", "Lib.Loops.fsti.checked", "Lib.LoopCombinators.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib....
[ { "abbrev": true, "full_module": "Hacl.SHA3", "short_module": "SHA3" }, { "abbrev": true, "full_module": "Spec.Frodo.Lemmas", "short_module": "Lemmas" }, { "abbrev": true, "full_module": "Spec.Frodo.Gen", "short_module": "S" }, { "abbrev": true, "full_module":...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
n: Lib.IntTypes.size_t { Lib.IntTypes.v n * Lib.IntTypes.v n <= Lib.IntTypes.max_size_t /\ Lib.IntTypes.v n <= Lib.IntTypes.maxint Lib.IntTypes.U16 } -> tmp_seed: Hacl.Impl.Matrix.lbytes (18ul *! 4ul) -> r: Hacl.Impl.Matrix.lbytes (Lib.IntTypes.size 8 *! n) -> i: Lib.IntTypes.si...
FStar.HyperStack.ST.Stack
[]
[]
[ "Lib.IntTypes.size_t", "Prims.l_and", "Prims.b2t", "Prims.op_LessThanOrEqual", "FStar.Mul.op_Star", "Lib.IntTypes.v", "Lib.IntTypes.U32", "Lib.IntTypes.PUB", "Lib.IntTypes.max_size_t", "Lib.IntTypes.maxint", "Lib.IntTypes.U16", "Hacl.Impl.Matrix.lbytes", "Lib.IntTypes.op_Star_Bang", "FStar...
[]
false
true
false
false
false
let frodo_gen_matrix_shake_4x1 n tmp_seed r i res =
let r0 = sub r (size 0 *! n) (size 2 *! n) in let r1 = sub r (size 2 *! n) (size 2 *! n) in let r2 = sub r (size 4 *! n) (size 2 *! n) in let r3 = sub r (size 6 *! n) (size 2 *! n) in frodo_gen_matrix_shake_4x1_get_r n tmp_seed r0 r1 r2 r3 i; [@@ inline_let ]let spec h0 = S.frodo_gen_matrix_shake_4x0 (v n) (v i) ...
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.put
val put (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (key: a) (value: b) : tree a b
val put (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (key: a) (value: b) : tree a b
let rec put (#a:eqtype) (#b:Type) (is_le:a -> a -> bool) (t:tree a b) (key:a) (value:b) : tree a b = match t with | Empty -> mkNode key value Empty Empty | Node k v _ l r -> if key = k then mkNode k value l r else if is_le key k then balance (mkNode k v (put is_le l key value) r) else bala...
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 52, "end_line": 59, "start_col": 0, "start_line": 51 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h let mkNode (#a:eqty...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
is_le: (_: a -> _: a -> Prims.bool) -> t: Vale.Lib.MapTree.tree a b -> key: a -> value: b -> Vale.Lib.MapTree.tree a b
Prims.Tot
[ "total" ]
[]
[ "Prims.eqtype", "Prims.bool", "Vale.Lib.MapTree.tree", "Vale.Lib.MapTree.mkNode", "Vale.Lib.MapTree.Empty", "Prims.nat", "Prims.op_Equality", "Vale.Lib.MapTree.balance", "Vale.Lib.MapTree.put" ]
[ "recursion" ]
false
false
false
false
false
let rec put (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (key: a) (value: b) : tree a b =
match t with | Empty -> mkNode key value Empty Empty | Node k v _ l r -> if key = k then mkNode k value l r else if is_le key k then balance (mkNode k v (put is_le l key value) r) else balance (mkNode k v l (put is_le r key value))
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.inv
val inv : is_le: (_: a -> _: a -> Prims.bool) -> t: Vale.Lib.MapTree.tree a b -> lo: FStar.Pervasives.Native.option a -> hi: FStar.Pervasives.Native.option a -> Prims.logical
let rec inv (#a:eqtype) (#b:Type) (is_le:a -> a -> bool) (t:tree a b) (lo hi:option a) = let (<) x y = is_lt_option is_le x y in match t with | Empty -> True | Node x _ _ l r -> let x = Some x in lo < x /\ x < hi /\ inv is_le l lo x /\ inv is_le r x hi
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 60, "end_line": 74, "start_col": 0, "start_line": 68 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h let mkNode (#a:eqty...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
is_le: (_: a -> _: a -> Prims.bool) -> t: Vale.Lib.MapTree.tree a b -> lo: FStar.Pervasives.Native.option a -> hi: FStar.Pervasives.Native.option a -> Prims.logical
Prims.Tot
[ "total" ]
[]
[ "Prims.eqtype", "Prims.bool", "Vale.Lib.MapTree.tree", "FStar.Pervasives.Native.option", "Prims.l_True", "Prims.nat", "Prims.l_and", "Prims.b2t", "Vale.Lib.MapTree.inv", "FStar.Pervasives.Native.Some", "Prims.logical", "Vale.Lib.MapTree.is_lt_option" ]
[ "recursion" ]
false
false
false
false
true
let rec inv (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (lo hi: option a) =
let ( < ) x y = is_lt_option is_le x y in match t with | Empty -> True | Node x _ _ l r -> let x = Some x in lo < x /\ x < hi /\ inv is_le l lo x /\ inv is_le r x hi
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.const
val const (a:eqtype) (b:Type) (is_le:(a -> a -> bool){is_cmp is_le}) (default_v:b) : map a b
val const (a:eqtype) (b:Type) (is_le:(a -> a -> bool){is_cmp is_le}) (default_v:b) : map a b
let const a b is_le d = Map is_le Empty d ()
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 22, "end_line": 147, "start_col": 0, "start_line": 146 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h let mkNode (#a:eqty...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
a: Prims.eqtype -> b: Type -> is_le: (_: a -> _: a -> Prims.bool){Vale.Lib.MapTree.is_cmp is_le} -> default_v: b -> Vale.Lib.MapTree.map a b
Prims.Tot
[ "total" ]
[]
[ "Prims.eqtype", "Prims.bool", "Vale.Lib.MapTree.is_cmp", "Vale.Lib.MapTree.Map", "Vale.Lib.MapTree.Empty", "Vale.Lib.MapTree.map" ]
[]
false
false
false
false
false
let const a b is_le d =
Map is_le Empty d ()
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.sel
val sel (#a:eqtype) (#b:Type) (m:map a b) (key:a) : b
val sel (#a:eqtype) (#b:Type) (m:map a b) (key:a) : b
let sel #a #b (Map is_le t d _) key = match get is_le t key with Some v -> v | None -> d
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 52, "end_line": 150, "start_col": 0, "start_line": 149 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h let mkNode (#a:eqty...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
m: Vale.Lib.MapTree.map a b -> key: a -> b
Prims.Tot
[ "total" ]
[]
[ "Prims.eqtype", "Vale.Lib.MapTree.map", "Prims.bool", "Vale.Lib.MapTree.tree", "Prims.squash", "Prims.l_and", "Vale.Lib.MapTree.is_cmp", "Vale.Lib.MapTree.inv", "FStar.Pervasives.Native.None", "Vale.Lib.MapTree.get" ]
[]
false
false
false
false
false
let sel #a #b (Map is_le t d _) key =
match get is_le t key with | Some v -> v | None -> d
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.lemma_get_put_self
val lemma_get_put_self (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (key: a) (value: b) (lo hi: option a) : Lemma (requires is_cmp is_le /\ inv is_le t lo hi) (ensures get is_le (put is_le t key value) key == Some value)
val lemma_get_put_self (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (key: a) (value: b) (lo hi: option a) : Lemma (requires is_cmp is_le /\ inv is_le t lo hi) (ensures get is_le (put is_le t key value) key == Some value)
let rec lemma_get_put_self (#a:eqtype) (#b:Type) (is_le:a -> a -> bool) (t:tree a b) (key:a) (value:b) (lo hi:option a) : Lemma (requires is_cmp is_le /\ inv is_le t lo hi) (ensures get is_le (put is_le t key value) key == Some value) = match t with | Empty -> () | Node k v _ l r -> if key = k then () ...
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 54, "end_line": 107, "start_col": 0, "start_line": 96 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h let mkNode (#a:eqty...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 2, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
is_le: (_: a -> _: a -> Prims.bool) -> t: Vale.Lib.MapTree.tree a b -> key: a -> value: b -> lo: FStar.Pervasives.Native.option a -> hi: FStar.Pervasives.Native.option a -> FStar.Pervasives.Lemma (requires Vale.Lib.MapTree.is_cmp is_le /\ Vale.Lib.MapTree.inv is_le t lo hi) (ensur...
FStar.Pervasives.Lemma
[ "lemma" ]
[]
[ "Prims.eqtype", "Prims.bool", "Vale.Lib.MapTree.tree", "FStar.Pervasives.Native.option", "Prims.nat", "Prims.op_Equality", "Vale.Lib.MapTree.lemma_get_put_self", "FStar.Pervasives.Native.Some", "Prims.unit", "Prims.l_and", "Vale.Lib.MapTree.is_cmp", "Vale.Lib.MapTree.inv", "Prims.squash", ...
[ "recursion" ]
false
false
true
false
false
let rec lemma_get_put_self (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (key: a) (value: b) (lo hi: option a) : Lemma (requires is_cmp is_le /\ inv is_le t lo hi) (ensures get is_le (put is_le t key value) key == Some value) =
match t with | Empty -> () | Node k v _ l r -> if key = k then () else if is_le key k then lemma_get_put_self is_le l key value lo (Some k) else lemma_get_put_self is_le r key value (Some k) hi
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.upd
val upd (#a:eqtype) (#b:Type) (m:map a b) (key:a) (value:b) : map a b
val upd (#a:eqtype) (#b:Type) (m:map a b) (key:a) (value:b) : map a b
let upd #a #b (Map is_le t d _) key value = let t' = put is_le t key value in lemma_put_inv is_le t key value None None; Map is_le t' d ()
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 19, "end_line": 155, "start_col": 0, "start_line": 152 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h let mkNode (#a:eqty...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
m: Vale.Lib.MapTree.map a b -> key: a -> value: b -> Vale.Lib.MapTree.map a b
Prims.Tot
[ "total" ]
[]
[ "Prims.eqtype", "Vale.Lib.MapTree.map", "Prims.bool", "Vale.Lib.MapTree.tree", "Prims.squash", "Prims.l_and", "Vale.Lib.MapTree.is_cmp", "Vale.Lib.MapTree.inv", "FStar.Pervasives.Native.None", "Vale.Lib.MapTree.Map", "Prims.unit", "Vale.Lib.MapTree.lemma_put_inv", "Vale.Lib.MapTree.put" ]
[]
false
false
false
false
false
let upd #a #b (Map is_le t d _) key value =
let t' = put is_le t key value in lemma_put_inv is_le t key value None None; Map is_le t' d ()
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.lemma_put_inv
val lemma_put_inv (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (key: a) (value: b) (lo hi: option a) : Lemma (requires is_cmp is_le /\ inv is_le t lo hi /\ is_lt_option is_le lo (Some key) /\ is_lt_option is_le (Some key) hi) (ensure...
val lemma_put_inv (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (key: a) (value: b) (lo hi: option a) : Lemma (requires is_cmp is_le /\ inv is_le t lo hi /\ is_lt_option is_le lo (Some key) /\ is_lt_option is_le (Some key) hi) (ensure...
let rec lemma_put_inv (#a:eqtype) (#b:Type) (is_le:a -> a -> bool) (t:tree a b) (key:a) (value:b) (lo hi:option a) : Lemma (requires is_cmp is_le /\ inv is_le t lo hi /\ is_lt_option is_le lo (Some key) /\ is_lt_option is_le (Some key) hi ) (ensures inv is_le (put is_le t key value...
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 49, "end_line": 94, "start_col": 0, "start_line": 77 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h let mkNode (#a:eqty...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 2, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
is_le: (_: a -> _: a -> Prims.bool) -> t: Vale.Lib.MapTree.tree a b -> key: a -> value: b -> lo: FStar.Pervasives.Native.option a -> hi: FStar.Pervasives.Native.option a -> FStar.Pervasives.Lemma (requires Vale.Lib.MapTree.is_cmp is_le /\ Vale.Lib.MapTree.inv is_le t lo hi /\ ...
FStar.Pervasives.Lemma
[ "lemma" ]
[]
[ "Prims.eqtype", "Prims.bool", "Vale.Lib.MapTree.tree", "FStar.Pervasives.Native.option", "Prims.nat", "Prims.op_Equality", "Vale.Lib.MapTree.lemma_put_inv", "FStar.Pervasives.Native.Some", "Prims.unit", "Prims.l_and", "Vale.Lib.MapTree.is_cmp", "Vale.Lib.MapTree.inv", "Prims.b2t", "Vale.Li...
[ "recursion" ]
false
false
true
false
false
let rec lemma_put_inv (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (key: a) (value: b) (lo hi: option a) : Lemma (requires is_cmp is_le /\ inv is_le t lo hi /\ is_lt_option is_le lo (Some key) /\ is_lt_option is_le (Some key) hi) (en...
match t with | Empty -> () | Node k v _ l r -> if key = k then () else if is_le key k then lemma_put_inv is_le l key value lo (Some k) else lemma_put_inv is_le r key value (Some k) hi
false
Spec.Frodo.Encode.fst
Spec.Frodo.Encode.ec
val ec: logq:size_pos{logq <= 16} -> b:size_pos{b <= logq} -> k:uint16{v k < pow2 b} -> Pure uint16 (requires True) (ensures fun r -> v r < pow2 logq /\ v r == v k * pow2 (logq - b))
val ec: logq:size_pos{logq <= 16} -> b:size_pos{b <= logq} -> k:uint16{v k < pow2 b} -> Pure uint16 (requires True) (ensures fun r -> v r < pow2 logq /\ v r == v k * pow2 (logq - b))
let ec logq b k = let res = k <<. size (logq - b) in assert (v res = v k * pow2 (logq - b) % modulus U16); calc (<) { v k * pow2 (logq - b); (<) { Math.Lemmas.lemma_mult_lt_right (pow2 (logq - b)) (v k) (pow2 b) } pow2 b * pow2 (logq - b); (==) { Math.Lemmas.pow2_plus b (logq - b) } pow2 logq...
{ "file_name": "specs/frodo/Spec.Frodo.Encode.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 5, "end_line": 43, "start_col": 0, "start_line": 28 }
module Spec.Frodo.Encode open FStar.Mul open Lib.IntTypes open Lib.Sequence open Lib.ByteSequence open Spec.Matrix open Spec.Frodo.Lemmas module LSeq = Lib.Sequence module Loops = Lib.LoopCombinators #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" (** The simplified version of the encode and decode functions when...
{ "checked_file": "/", "dependencies": [ "Spec.Matrix.fst.checked", "Spec.Frodo.Lemmas.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.LoopCombinators.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.ByteSequence.fsti.checked", "FStar.Pervasives.Native.fst.checke...
[ { "abbrev": true, "full_module": "Lib.LoopCombinators", "short_module": "Loops" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": false, "full_module": "Spec.Frodo.Lemmas", "short_module": null }, { "abbrev": false, "ful...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
logq: Lib.IntTypes.size_pos{logq <= 16} -> b: Lib.IntTypes.size_pos{b <= logq} -> k: Lib.IntTypes.uint16{Lib.IntTypes.v k < Prims.pow2 b} -> Prims.Pure Lib.IntTypes.uint16
Prims.Pure
[]
[]
[ "Lib.IntTypes.size_pos", "Prims.b2t", "Prims.op_LessThanOrEqual", "Lib.IntTypes.uint16", "Prims.op_LessThan", "Lib.IntTypes.v", "Lib.IntTypes.U16", "Lib.IntTypes.SEC", "Prims.pow2", "Prims.unit", "Prims._assert", "Prims.op_Equality", "Prims.int", "FStar.Mul.op_Star", "Prims.op_Subtractio...
[]
false
false
false
false
false
let ec logq b k =
let res = k <<. size (logq - b) in assert (v res = v k * pow2 (logq - b) % modulus U16); calc ( < ) { v k * pow2 (logq - b); ( < ) { Math.Lemmas.lemma_mult_lt_right (pow2 (logq - b)) (v k) (pow2 b) } pow2 b * pow2 (logq - b); ( == ) { Math.Lemmas.pow2_plus b (logq - b) } pow2 logq; }; Math.Lemmas.pow2_le_comp...
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.lemma_sel_upd_self
val lemma_sel_upd_self (#a:eqtype) (#b:Type) (m:map a b) (key:a) (value:b) : Lemma (ensures sel (upd m key value) key == value) [SMTPat (sel (upd m key value) key)]
val lemma_sel_upd_self (#a:eqtype) (#b:Type) (m:map a b) (key:a) (value:b) : Lemma (ensures sel (upd m key value) key == value) [SMTPat (sel (upd m key value) key)]
let lemma_sel_upd_self #a #b (Map is_le t _ _) key value = lemma_get_put_self is_le t key value None None
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 48, "end_line": 161, "start_col": 0, "start_line": 160 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h let mkNode (#a:eqty...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
m: Vale.Lib.MapTree.map a b -> key: a -> value: b -> FStar.Pervasives.Lemma (ensures Vale.Lib.MapTree.sel (Vale.Lib.MapTree.upd m key value) key == value) [SMTPat (Vale.Lib.MapTree.sel (Vale.Lib.MapTree.upd m key value) key)]
FStar.Pervasives.Lemma
[ "lemma" ]
[]
[ "Prims.eqtype", "Vale.Lib.MapTree.map", "Prims.bool", "Vale.Lib.MapTree.tree", "Prims.squash", "Prims.l_and", "Vale.Lib.MapTree.is_cmp", "Vale.Lib.MapTree.inv", "FStar.Pervasives.Native.None", "Vale.Lib.MapTree.lemma_get_put_self", "Prims.unit" ]
[]
false
false
true
false
false
let lemma_sel_upd_self #a #b (Map is_le t _ _) key value =
lemma_get_put_self is_le t key value None None
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.lemma_sel_upd_other
val lemma_sel_upd_other (#a:eqtype) (#b:Type) (m:map a b) (key kx:a) (value:b) : Lemma (requires key =!= kx) (ensures sel (upd m key value) kx == sel m kx) [SMTPat (sel (upd m key value) kx)]
val lemma_sel_upd_other (#a:eqtype) (#b:Type) (m:map a b) (key kx:a) (value:b) : Lemma (requires key =!= kx) (ensures sel (upd m key value) kx == sel m kx) [SMTPat (sel (upd m key value) kx)]
let lemma_sel_upd_other #a #b (Map is_le t _ _) key kx value = lemma_get_put_other is_le t key kx value None None
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 52, "end_line": 164, "start_col": 0, "start_line": 163 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h let mkNode (#a:eqty...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
m: Vale.Lib.MapTree.map a b -> key: a -> kx: a -> value: b -> FStar.Pervasives.Lemma (requires ~(key == kx)) (ensures Vale.Lib.MapTree.sel (Vale.Lib.MapTree.upd m key value) kx == Vale.Lib.MapTree.sel m kx) [SMTPat (Vale.Lib.MapTree.sel (Vale.Lib.MapTree.upd m key value) kx)]
FStar.Pervasives.Lemma
[ "lemma" ]
[]
[ "Prims.eqtype", "Vale.Lib.MapTree.map", "Prims.bool", "Vale.Lib.MapTree.tree", "Prims.squash", "Prims.l_and", "Vale.Lib.MapTree.is_cmp", "Vale.Lib.MapTree.inv", "FStar.Pervasives.Native.None", "Vale.Lib.MapTree.lemma_get_put_other", "Prims.unit" ]
[]
false
false
true
false
false
let lemma_sel_upd_other #a #b (Map is_le t _ _) key kx value =
lemma_get_put_other is_le t key kx value None None
false
Spec.Frodo.Encode.fst
Spec.Frodo.Encode.frodo_key_encode0
val frodo_key_encode0: logq:size_pos{logq <= 16} -> b:size_pos{b <= logq /\ b <= 8} -> n:size_pos{n == 8} -> a:lbytes (n * n * b / 8) -> x:uint64 -> i:size_nat{i < n} -> k:size_nat{k < 8} -> res:matrix n n -> matrix n n
val frodo_key_encode0: logq:size_pos{logq <= 16} -> b:size_pos{b <= logq /\ b <= 8} -> n:size_pos{n == 8} -> a:lbytes (n * n * b / 8) -> x:uint64 -> i:size_nat{i < n} -> k:size_nat{k < 8} -> res:matrix n n -> matrix n n
let frodo_key_encode0 logq b n a x i k res = res.(i, k) <- ec1 logq b x k
{ "file_name": "specs/frodo/Spec.Frodo.Encode.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 30, "end_line": 123, "start_col": 0, "start_line": 122 }
module Spec.Frodo.Encode open FStar.Mul open Lib.IntTypes open Lib.Sequence open Lib.ByteSequence open Spec.Matrix open Spec.Frodo.Lemmas module LSeq = Lib.Sequence module Loops = Lib.LoopCombinators #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" (** The simplified version of the encode and decode functions when...
{ "checked_file": "/", "dependencies": [ "Spec.Matrix.fst.checked", "Spec.Frodo.Lemmas.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.LoopCombinators.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.ByteSequence.fsti.checked", "FStar.Pervasives.Native.fst.checke...
[ { "abbrev": true, "full_module": "Lib.LoopCombinators", "short_module": "Loops" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": false, "full_module": "Spec.Frodo.Lemmas", "short_module": null }, { "abbrev": false, "ful...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
logq: Lib.IntTypes.size_pos{logq <= 16} -> b: Lib.IntTypes.size_pos{b <= logq /\ b <= 8} -> n: Lib.IntTypes.size_pos{n == 8} -> a: Lib.ByteSequence.lbytes ((n * n) * b / 8) -> x: Lib.IntTypes.uint64 -> i: Lib.IntTypes.size_nat{i < n} -> k: Lib.IntTypes.size_nat{k < 8} -> res: Spec.Matri...
Prims.Tot
[ "total" ]
[]
[ "Lib.IntTypes.size_pos", "Prims.b2t", "Prims.op_LessThanOrEqual", "Prims.l_and", "Prims.eq2", "Prims.int", "Lib.ByteSequence.lbytes", "Prims.op_Division", "FStar.Mul.op_Star", "Lib.IntTypes.uint64", "Lib.IntTypes.size_nat", "Prims.op_LessThan", "Spec.Matrix.matrix", "Spec.Matrix.op_Array_A...
[]
false
false
false
false
false
let frodo_key_encode0 logq b n a x i k res =
res.(i, k) <- ec1 logq b x k
false
Vale.Stdcalls.X64.Poly.fsti
Vale.Stdcalls.X64.Poly.as_normal_t
val as_normal_t (#a: Type) (x: a) : normal a
val as_normal_t (#a: Type) (x: a) : normal a
let as_normal_t (#a:Type) (x:a) : normal a = x
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Poly.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 46, "end_line": 35, "start_col": 0, "start_line": 35 }
module Vale.Stdcalls.X64.Poly open FStar.Mul val z3rlimit_hack (x:nat) : squash (x < x + x + 1) #reset-options "--z3rlimit 50" open FStar.HyperStack.ST module HS = FStar.HyperStack module B = LowStar.Buffer module IB = LowStar.ImmutableBuffer module DV = LowStar.BufferView.Down open Vale.Def.Types_s open Vale.Intero...
{ "checked_file": "/", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Poly1305.X64.fsti.checked", "Vale.Poly1305.Math.fsti.checked", "Vale....
[ { "abbrev": false, "full_module": "Vale.Poly1305.Math", "short_module": null }, { "abbrev": true, "full_module": "Vale.Poly1305.X64", "short_module": "PO" }, { "abbrev": true, "full_module": "Vale.X64.Machine_s", "short_module": "MS" }, { "abbrev": true, "full...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
x: a -> Vale.Interop.Base.normal a
Prims.Tot
[ "total" ]
[]
[ "Vale.Interop.Base.normal" ]
[]
false
false
false
true
false
let as_normal_t (#a: Type) (x: a) : normal a =
x
false
Spec.Frodo.Encode.fst
Spec.Frodo.Encode.frodo_key_encode2
val frodo_key_encode2: logq:size_pos{logq <= 16} -> b:size_pos{b <= logq /\ b <= 8} -> n:size_pos{n == 8} -> a:lbytes (n * n * b / 8) -> i:size_nat{i < n} -> res:matrix n n -> matrix n n
val frodo_key_encode2: logq:size_pos{logq <= 16} -> b:size_pos{b <= logq /\ b <= 8} -> n:size_pos{n == 8} -> a:lbytes (n * n * b / 8) -> i:size_nat{i < n} -> res:matrix n n -> matrix n n
let frodo_key_encode2 logq b n a i res = let x = frodo_key_encode1 logq b n a i in Loops.repeati 8 (frodo_key_encode0 logq b n a x i) res
{ "file_name": "specs/frodo/Spec.Frodo.Encode.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 56, "end_line": 151, "start_col": 0, "start_line": 149 }
module Spec.Frodo.Encode open FStar.Mul open Lib.IntTypes open Lib.Sequence open Lib.ByteSequence open Spec.Matrix open Spec.Frodo.Lemmas module LSeq = Lib.Sequence module Loops = Lib.LoopCombinators #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" (** The simplified version of the encode and decode functions when...
{ "checked_file": "/", "dependencies": [ "Spec.Matrix.fst.checked", "Spec.Frodo.Lemmas.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.LoopCombinators.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.ByteSequence.fsti.checked", "FStar.Pervasives.Native.fst.checke...
[ { "abbrev": true, "full_module": "Lib.LoopCombinators", "short_module": "Loops" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": false, "full_module": "Spec.Frodo.Lemmas", "short_module": null }, { "abbrev": false, "ful...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
logq: Lib.IntTypes.size_pos{logq <= 16} -> b: Lib.IntTypes.size_pos{b <= logq /\ b <= 8} -> n: Lib.IntTypes.size_pos{n == 8} -> a: Lib.ByteSequence.lbytes ((n * n) * b / 8) -> i: Lib.IntTypes.size_nat{i < n} -> res: Spec.Matrix.matrix n n -> Spec.Matrix.matrix n n
Prims.Tot
[ "total" ]
[]
[ "Lib.IntTypes.size_pos", "Prims.b2t", "Prims.op_LessThanOrEqual", "Prims.l_and", "Prims.eq2", "Prims.int", "Lib.ByteSequence.lbytes", "Prims.op_Division", "FStar.Mul.op_Star", "Lib.IntTypes.size_nat", "Prims.op_LessThan", "Spec.Matrix.matrix", "Lib.LoopCombinators.repeati", "Spec.Frodo.Enc...
[]
false
false
false
false
false
let frodo_key_encode2 logq b n a i res =
let x = frodo_key_encode1 logq b n a i in Loops.repeati 8 (frodo_key_encode0 logq b n a x i) res
false
Vale.Stdcalls.X64.Poly.fsti
Vale.Stdcalls.X64.Poly.as_t
val as_t (#a: Type) (x: normal a) : a
val as_t (#a: Type) (x: normal a) : a
let as_t (#a:Type) (x:normal a) : a = x
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Poly.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 39, "end_line": 33, "start_col": 0, "start_line": 33 }
module Vale.Stdcalls.X64.Poly open FStar.Mul val z3rlimit_hack (x:nat) : squash (x < x + x + 1) #reset-options "--z3rlimit 50" open FStar.HyperStack.ST module HS = FStar.HyperStack module B = LowStar.Buffer module IB = LowStar.ImmutableBuffer module DV = LowStar.BufferView.Down open Vale.Def.Types_s open Vale.Intero...
{ "checked_file": "/", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Poly1305.X64.fsti.checked", "Vale.Poly1305.Math.fsti.checked", "Vale....
[ { "abbrev": false, "full_module": "Vale.Poly1305.Math", "short_module": null }, { "abbrev": true, "full_module": "Vale.Poly1305.X64", "short_module": "PO" }, { "abbrev": true, "full_module": "Vale.X64.Machine_s", "short_module": "MS" }, { "abbrev": true, "full...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
x: Vale.Interop.Base.normal a -> a
Prims.Tot
[ "total" ]
[]
[ "Vale.Interop.Base.normal" ]
[]
false
false
false
true
false
let as_t (#a: Type) (x: normal a) : a =
x
false
Vale.Curve25519.FastHybrid_helpers.fsti
Vale.Curve25519.FastHybrid_helpers.int_canon
val int_canon : _: _ -> FStar.Tactics.Effect.Tac Prims.unit
let int_canon = fun _ -> norm [delta; zeta; iota]; int_semiring ()
{ "file_name": "vale/code/crypto/ecc/curve25519/Vale.Curve25519.FastHybrid_helpers.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 66, "end_line": 11, "start_col": 0, "start_line": 11 }
module Vale.Curve25519.FastHybrid_helpers open Vale.Def.Words_s open Vale.Def.Types_s open FStar.Mul open FStar.Tactics open FStar.Tactics.CanonCommSemiring open Vale.Curve25519.Fast_defs open FStar.Calc
{ "checked_file": "/", "dependencies": [ "Vale.Def.Words_s.fsti.checked", "Vale.Def.Types_s.fst.checked", "Vale.Curve25519.Fast_defs.fst.checked", "prims.fst.checked", "FStar.Tactics.CanonCommSemiring.fst.checked", "FStar.Tactics.fst.checked", "FStar.Pervasives.fsti.checked", "FStar....
[ { "abbrev": false, "full_module": "FStar.Calc", "short_module": null }, { "abbrev": false, "full_module": "Vale.Curve25519.Fast_defs", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics.CanonCommSemiring", "short_module": null }, { "abbrev": ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
_: _ -> FStar.Tactics.Effect.Tac Prims.unit
FStar.Tactics.Effect.Tac
[]
[]
[ "FStar.Tactics.CanonCommSemiring.int_semiring", "Prims.unit", "FStar.Stubs.Tactics.V1.Builtins.norm", "Prims.Cons", "FStar.Pervasives.norm_step", "FStar.Pervasives.delta", "FStar.Pervasives.zeta", "FStar.Pervasives.iota", "Prims.Nil" ]
[]
false
true
false
false
false
let int_canon =
fun _ -> norm [delta; zeta; iota]; int_semiring ()
false
Vale.Curve25519.FastHybrid_helpers.fsti
Vale.Curve25519.FastHybrid_helpers.pow2_63
val pow2_63:nat
val pow2_63:nat
let pow2_63:nat = 0x8000000000000000
{ "file_name": "vale/code/crypto/ecc/curve25519/Vale.Curve25519.FastHybrid_helpers.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 43, "end_line": 13, "start_col": 7, "start_line": 13 }
module Vale.Curve25519.FastHybrid_helpers open Vale.Def.Words_s open Vale.Def.Types_s open FStar.Mul open FStar.Tactics open FStar.Tactics.CanonCommSemiring open Vale.Curve25519.Fast_defs open FStar.Calc let int_canon = fun _ -> norm [delta; zeta; iota]; int_semiring () //; dump "Final"
{ "checked_file": "/", "dependencies": [ "Vale.Def.Words_s.fsti.checked", "Vale.Def.Types_s.fst.checked", "Vale.Curve25519.Fast_defs.fst.checked", "prims.fst.checked", "FStar.Tactics.CanonCommSemiring.fst.checked", "FStar.Tactics.fst.checked", "FStar.Pervasives.fsti.checked", "FStar....
[ { "abbrev": false, "full_module": "FStar.Calc", "short_module": null }, { "abbrev": false, "full_module": "Vale.Curve25519.Fast_defs", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics.CanonCommSemiring", "short_module": null }, { "abbrev": ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
Prims.nat
Prims.Tot
[ "total" ]
[]
[]
[]
false
false
false
true
false
let pow2_63:nat =
0x8000000000000000
false
Spec.Frodo.Encode.fst
Spec.Frodo.Encode.frodo_key_encode
val frodo_key_encode: logq:size_pos{logq <= 16} -> b:size_pos{b <= logq /\ b <= 8} -> n:size_pos{n == 8} -> a:lbytes (n * n * b / 8) -> matrix n n
val frodo_key_encode: logq:size_pos{logq <= 16} -> b:size_pos{b <= logq /\ b <= 8} -> n:size_pos{n == 8} -> a:lbytes (n * n * b / 8) -> matrix n n
let frodo_key_encode logq b n a = let res = create n n in Loops.repeati n (frodo_key_encode2 logq b n a) res
{ "file_name": "specs/frodo/Spec.Frodo.Encode.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 52, "end_line": 163, "start_col": 0, "start_line": 161 }
module Spec.Frodo.Encode open FStar.Mul open Lib.IntTypes open Lib.Sequence open Lib.ByteSequence open Spec.Matrix open Spec.Frodo.Lemmas module LSeq = Lib.Sequence module Loops = Lib.LoopCombinators #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" (** The simplified version of the encode and decode functions when...
{ "checked_file": "/", "dependencies": [ "Spec.Matrix.fst.checked", "Spec.Frodo.Lemmas.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.LoopCombinators.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.ByteSequence.fsti.checked", "FStar.Pervasives.Native.fst.checke...
[ { "abbrev": true, "full_module": "Lib.LoopCombinators", "short_module": "Loops" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": false, "full_module": "Spec.Frodo.Lemmas", "short_module": null }, { "abbrev": false, "ful...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
logq: Lib.IntTypes.size_pos{logq <= 16} -> b: Lib.IntTypes.size_pos{b <= logq /\ b <= 8} -> n: Lib.IntTypes.size_pos{n == 8} -> a: Lib.ByteSequence.lbytes ((n * n) * b / 8) -> Spec.Matrix.matrix n n
Prims.Tot
[ "total" ]
[]
[ "Lib.IntTypes.size_pos", "Prims.b2t", "Prims.op_LessThanOrEqual", "Prims.l_and", "Prims.eq2", "Prims.int", "Lib.ByteSequence.lbytes", "Prims.op_Division", "FStar.Mul.op_Star", "Lib.LoopCombinators.repeati", "Spec.Matrix.matrix", "Spec.Frodo.Encode.frodo_key_encode2", "Lib.Sequence.lseq", "...
[]
false
false
false
false
false
let frodo_key_encode logq b n a =
let res = create n n in Loops.repeati n (frodo_key_encode2 logq b n a) res
false
Spec.Frodo.Encode.fst
Spec.Frodo.Encode.frodo_key_decode2
val frodo_key_decode2: logq:size_pos{logq <= 16} -> b:size_pos{b < logq /\ b <= 8} -> n:size_pos{n == 8} -> a:matrix n n -> i:size_nat{i < n} -> res:lbytes (n * n * b / 8) -> lbytes (n * n * b / 8)
val frodo_key_decode2: logq:size_pos{logq <= 16} -> b:size_pos{b < logq /\ b <= 8} -> n:size_pos{n == 8} -> a:matrix n n -> i:size_nat{i < n} -> res:lbytes (n * n * b / 8) -> lbytes (n * n * b / 8)
let frodo_key_decode2 logq b n a i res = let templong = Loops.repeat_gen 8 decode_templong_t (frodo_key_decode0 logq b n a i) (u64 0) in frodo_key_decode1 logq b n i templong res
{ "file_name": "specs/frodo/Spec.Frodo.Encode.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 43, "end_line": 207, "start_col": 0, "start_line": 205 }
module Spec.Frodo.Encode open FStar.Mul open Lib.IntTypes open Lib.Sequence open Lib.ByteSequence open Spec.Matrix open Spec.Frodo.Lemmas module LSeq = Lib.Sequence module Loops = Lib.LoopCombinators #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" (** The simplified version of the encode and decode functions when...
{ "checked_file": "/", "dependencies": [ "Spec.Matrix.fst.checked", "Spec.Frodo.Lemmas.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.LoopCombinators.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.ByteSequence.fsti.checked", "FStar.Pervasives.Native.fst.checke...
[ { "abbrev": true, "full_module": "Lib.LoopCombinators", "short_module": "Loops" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": false, "full_module": "Spec.Frodo.Lemmas", "short_module": null }, { "abbrev": false, "ful...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
logq: Lib.IntTypes.size_pos{logq <= 16} -> b: Lib.IntTypes.size_pos{b < logq /\ b <= 8} -> n: Lib.IntTypes.size_pos{n == 8} -> a: Spec.Matrix.matrix n n -> i: Lib.IntTypes.size_nat{i < n} -> res: Lib.ByteSequence.lbytes ((n * n) * b / 8) -> Lib.ByteSequence.lbytes ((n * n) * b / 8)
Prims.Tot
[ "total" ]
[]
[ "Lib.IntTypes.size_pos", "Prims.b2t", "Prims.op_LessThanOrEqual", "Prims.l_and", "Prims.op_LessThan", "Prims.eq2", "Prims.int", "Spec.Matrix.matrix", "Lib.IntTypes.size_nat", "Lib.ByteSequence.lbytes", "Prims.op_Division", "FStar.Mul.op_Star", "Spec.Frodo.Encode.frodo_key_decode1", "Spec.F...
[]
false
false
false
false
false
let frodo_key_decode2 logq b n a i res =
let templong = Loops.repeat_gen 8 decode_templong_t (frodo_key_decode0 logq b n a i) (u64 0) in frodo_key_decode1 logq b n i templong res
false
Vale.Lib.MapTree.fst
Vale.Lib.MapTree.lemma_get_put_other
val lemma_get_put_other (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (key kx: a) (value: b) (lo hi: option a) : Lemma (requires is_cmp is_le /\ inv is_le t lo hi /\ is_lt_option is_le lo (Some key) /\ is_lt_option is_le (Some key) hi...
val lemma_get_put_other (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (key kx: a) (value: b) (lo hi: option a) : Lemma (requires is_cmp is_le /\ inv is_le t lo hi /\ is_lt_option is_le lo (Some key) /\ is_lt_option is_le (Some key) hi...
let rec lemma_get_put_other (#a:eqtype) (#b:Type) (is_le:a -> a -> bool) (t:tree a b) (key kx:a) (value:b) (lo hi:option a) : Lemma (requires is_cmp is_le /\ inv is_le t lo hi /\ is_lt_option is_le lo (Some key) /\ is_lt_option is_le (Some key) hi /\ key =!= kx ) (ensures get...
{ "file_name": "vale/code/lib/collections/Vale.Lib.MapTree.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 58, "end_line": 128, "start_col": 0, "start_line": 109 }
module Vale.Lib.MapTree open FStar.Mul (** Balanced tree implementation *) type tree (a:eqtype) (b:Type) = | Empty : tree a b | Node : a -> b -> nat -> tree a b -> tree a b -> tree a b let height (#a:eqtype) (#b:Type) (t:tree a b) : nat = match t with | Empty -> 0 | Node _ _ h _ _ -> h let mkNode (#a:eqty...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.Lib.MapTree.fst" }
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib", ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 2, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
is_le: (_: a -> _: a -> Prims.bool) -> t: Vale.Lib.MapTree.tree a b -> key: a -> kx: a -> value: b -> lo: FStar.Pervasives.Native.option a -> hi: FStar.Pervasives.Native.option a -> FStar.Pervasives.Lemma (requires Vale.Lib.MapTree.is_cmp is_le /\ Vale.Lib.MapTree.inv is_le ...
FStar.Pervasives.Lemma
[ "lemma" ]
[]
[ "Prims.eqtype", "Prims.bool", "Vale.Lib.MapTree.tree", "FStar.Pervasives.Native.option", "Prims.nat", "Prims.op_Equality", "Vale.Lib.MapTree.lemma_get_put_other", "FStar.Pervasives.Native.Some", "Prims.unit", "Vale.Lib.MapTree.lemma_put_inv", "Prims.l_and", "Vale.Lib.MapTree.is_cmp", "Vale.L...
[ "recursion" ]
false
false
true
false
false
let rec lemma_get_put_other (#a: eqtype) (#b: Type) (is_le: (a -> a -> bool)) (t: tree a b) (key kx: a) (value: b) (lo hi: option a) : Lemma (requires is_cmp is_le /\ inv is_le t lo hi /\ is_lt_option is_le lo (Some key) /\ is_lt_option is_le (Some key...
lemma_put_inv is_le t key value lo hi; match t with | Empty -> () | Node k v _ l r -> if key = k then () else if is_le key k then lemma_get_put_other is_le l key kx value lo (Some k) else lemma_get_put_other is_le r key kx value (Some k) hi
false
Spec.Frodo.Encode.fst
Spec.Frodo.Encode.frodo_key_encode1
val frodo_key_encode1: logq:size_pos{logq <= 16} -> b:size_pos{b <= logq /\ b <= 8} -> n:size_pos{n == 8} -> a:lbytes (n * n * b / 8) -> i:size_nat{i < n} -> uint64
val frodo_key_encode1: logq:size_pos{logq <= 16} -> b:size_pos{b <= logq /\ b <= 8} -> n:size_pos{n == 8} -> a:lbytes (n * n * b / 8) -> i:size_nat{i < n} -> uint64
let frodo_key_encode1 logq b n a i = let v8 = LSeq.create 8 (u8 0) in let v8 = update_sub v8 0 b (LSeq.sub a (i * b) b) in uint_from_bytes_le #U64 v8
{ "file_name": "specs/frodo/Spec.Frodo.Encode.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 28, "end_line": 137, "start_col": 0, "start_line": 134 }
module Spec.Frodo.Encode open FStar.Mul open Lib.IntTypes open Lib.Sequence open Lib.ByteSequence open Spec.Matrix open Spec.Frodo.Lemmas module LSeq = Lib.Sequence module Loops = Lib.LoopCombinators #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" (** The simplified version of the encode and decode functions when...
{ "checked_file": "/", "dependencies": [ "Spec.Matrix.fst.checked", "Spec.Frodo.Lemmas.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.LoopCombinators.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.ByteSequence.fsti.checked", "FStar.Pervasives.Native.fst.checke...
[ { "abbrev": true, "full_module": "Lib.LoopCombinators", "short_module": "Loops" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": false, "full_module": "Spec.Frodo.Lemmas", "short_module": null }, { "abbrev": false, "ful...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
logq: Lib.IntTypes.size_pos{logq <= 16} -> b: Lib.IntTypes.size_pos{b <= logq /\ b <= 8} -> n: Lib.IntTypes.size_pos{n == 8} -> a: Lib.ByteSequence.lbytes ((n * n) * b / 8) -> i: Lib.IntTypes.size_nat{i < n} -> Lib.IntTypes.uint64
Prims.Tot
[ "total" ]
[]
[ "Lib.IntTypes.size_pos", "Prims.b2t", "Prims.op_LessThanOrEqual", "Prims.l_and", "Prims.eq2", "Prims.int", "Lib.ByteSequence.lbytes", "Prims.op_Division", "FStar.Mul.op_Star", "Lib.IntTypes.size_nat", "Prims.op_LessThan", "Lib.ByteSequence.uint_from_bytes_le", "Lib.IntTypes.U64", "Lib.IntT...
[]
false
false
false
false
false
let frodo_key_encode1 logq b n a i =
let v8 = LSeq.create 8 (u8 0) in let v8 = update_sub v8 0 b (LSeq.sub a (i * b) b) in uint_from_bytes_le #U64 v8
false
Spec.Frodo.Encode.fst
Spec.Frodo.Encode.frodo_key_decode0
val frodo_key_decode0: logq:size_pos{logq <= 16} -> b:size_pos{b < logq /\ b <= 8} -> n:size_pos{n == 8} -> a:matrix n n -> i:size_nat{i < n} -> k:size_nat{k < 8} -> templong:uint64 -> uint64
val frodo_key_decode0: logq:size_pos{logq <= 16} -> b:size_pos{b < logq /\ b <= 8} -> n:size_pos{n == 8} -> a:matrix n n -> i:size_nat{i < n} -> k:size_nat{k < 8} -> templong:uint64 -> uint64
let frodo_key_decode0 logq b n a i k templong = templong |. to_u64 (dc logq b a.(i, k)) <<. size (b * k)
{ "file_name": "specs/frodo/Spec.Frodo.Encode.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 58, "end_line": 177, "start_col": 0, "start_line": 176 }
module Spec.Frodo.Encode open FStar.Mul open Lib.IntTypes open Lib.Sequence open Lib.ByteSequence open Spec.Matrix open Spec.Frodo.Lemmas module LSeq = Lib.Sequence module Loops = Lib.LoopCombinators #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" (** The simplified version of the encode and decode functions when...
{ "checked_file": "/", "dependencies": [ "Spec.Matrix.fst.checked", "Spec.Frodo.Lemmas.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.LoopCombinators.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.ByteSequence.fsti.checked", "FStar.Pervasives.Native.fst.checke...
[ { "abbrev": true, "full_module": "Lib.LoopCombinators", "short_module": "Loops" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": false, "full_module": "Spec.Frodo.Lemmas", "short_module": null }, { "abbrev": false, "ful...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
logq: Lib.IntTypes.size_pos{logq <= 16} -> b: Lib.IntTypes.size_pos{b < logq /\ b <= 8} -> n: Lib.IntTypes.size_pos{n == 8} -> a: Spec.Matrix.matrix n n -> i: Lib.IntTypes.size_nat{i < n} -> k: Lib.IntTypes.size_nat{k < 8} -> templong: Lib.IntTypes.uint64 -> Lib.IntTypes.uint64
Prims.Tot
[ "total" ]
[]
[ "Lib.IntTypes.size_pos", "Prims.b2t", "Prims.op_LessThanOrEqual", "Prims.l_and", "Prims.op_LessThan", "Prims.eq2", "Prims.int", "Spec.Matrix.matrix", "Lib.IntTypes.size_nat", "Lib.IntTypes.uint64", "Lib.IntTypes.op_Bar_Dot", "Lib.IntTypes.U64", "Lib.IntTypes.SEC", "Lib.IntTypes.op_Less_Les...
[]
false
false
false
false
false
let frodo_key_decode0 logq b n a i k templong =
templong |. to_u64 (dc logq b a.(i, k)) <<. size (b * k)
false
Spec.Frodo.Encode.fst
Spec.Frodo.Encode.frodo_key_decode
val frodo_key_decode: logq:size_pos{logq <= 16} -> b:size_pos{b < logq /\ b <= 8} -> n:size_pos{n == 8} -> a:matrix n n -> lbytes (n * n * b / 8)
val frodo_key_decode: logq:size_pos{logq <= 16} -> b:size_pos{b < logq /\ b <= 8} -> n:size_pos{n == 8} -> a:matrix n n -> lbytes (n * n * b / 8)
let frodo_key_decode logq b n a = let resLen = n * n * b / 8 in let res = LSeq.create resLen (u8 0) in Loops.repeati n (frodo_key_decode2 logq b n a) res
{ "file_name": "specs/frodo/Spec.Frodo.Encode.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 52, "end_line": 220, "start_col": 0, "start_line": 217 }
module Spec.Frodo.Encode open FStar.Mul open Lib.IntTypes open Lib.Sequence open Lib.ByteSequence open Spec.Matrix open Spec.Frodo.Lemmas module LSeq = Lib.Sequence module Loops = Lib.LoopCombinators #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" (** The simplified version of the encode and decode functions when...
{ "checked_file": "/", "dependencies": [ "Spec.Matrix.fst.checked", "Spec.Frodo.Lemmas.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.LoopCombinators.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.ByteSequence.fsti.checked", "FStar.Pervasives.Native.fst.checke...
[ { "abbrev": true, "full_module": "Lib.LoopCombinators", "short_module": "Loops" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": false, "full_module": "Spec.Frodo.Lemmas", "short_module": null }, { "abbrev": false, "ful...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
logq: Lib.IntTypes.size_pos{logq <= 16} -> b: Lib.IntTypes.size_pos{b < logq /\ b <= 8} -> n: Lib.IntTypes.size_pos{n == 8} -> a: Spec.Matrix.matrix n n -> Lib.ByteSequence.lbytes ((n * n) * b / 8)
Prims.Tot
[ "total" ]
[]
[ "Lib.IntTypes.size_pos", "Prims.b2t", "Prims.op_LessThanOrEqual", "Prims.l_and", "Prims.op_LessThan", "Prims.eq2", "Prims.int", "Spec.Matrix.matrix", "Lib.LoopCombinators.repeati", "Lib.ByteSequence.lbytes", "Prims.op_Division", "FStar.Mul.op_Star", "Spec.Frodo.Encode.frodo_key_decode2", "...
[]
false
false
false
false
false
let frodo_key_decode logq b n a =
let resLen = (n * n) * b / 8 in let res = LSeq.create resLen (u8 0) in Loops.repeati n (frodo_key_decode2 logq b n a) res
false
Spec.Frodo.Encode.fst
Spec.Frodo.Encode.ec1
val ec1: logq:size_pos{logq <= 16} -> b:size_pos{b <= logq /\ b <= 8} -> x:uint64 -> k:size_nat{k < 8} -> Pure uint16 (requires True) (ensures fun res -> let rk = v x / pow2 (b * k) % pow2 b in Math.Lemmas.pow2_lt_compat 16 b; res == ec logq b (u16 rk))
val ec1: logq:size_pos{logq <= 16} -> b:size_pos{b <= logq /\ b <= 8} -> x:uint64 -> k:size_nat{k < 8} -> Pure uint16 (requires True) (ensures fun res -> let rk = v x / pow2 (b * k) % pow2 b in Math.Lemmas.pow2_lt_compat 16 b; res == ec logq b (u16 rk))
let ec1 logq b x k = let rk = (x >>. size (b * k)) &. ((u64 1 <<. size b) -. u64 1) in Math.Lemmas.pow2_lt_compat 16 b; calc (==) { v rk; (==) { modulo_pow2_u64 (x >>. size (b * k)) b } v (x >>. size (b * k)) % pow2 b; (==) { } v x / pow2 (b * k) % pow2 b; }; ec logq b (to_u16 rk)
{ "file_name": "specs/frodo/Spec.Frodo.Encode.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 23, "end_line": 108, "start_col": 0, "start_line": 96 }
module Spec.Frodo.Encode open FStar.Mul open Lib.IntTypes open Lib.Sequence open Lib.ByteSequence open Spec.Matrix open Spec.Frodo.Lemmas module LSeq = Lib.Sequence module Loops = Lib.LoopCombinators #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" (** The simplified version of the encode and decode functions when...
{ "checked_file": "/", "dependencies": [ "Spec.Matrix.fst.checked", "Spec.Frodo.Lemmas.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.LoopCombinators.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.ByteSequence.fsti.checked", "FStar.Pervasives.Native.fst.checke...
[ { "abbrev": true, "full_module": "Lib.LoopCombinators", "short_module": "Loops" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": false, "full_module": "Spec.Frodo.Lemmas", "short_module": null }, { "abbrev": false, "ful...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
logq: Lib.IntTypes.size_pos{logq <= 16} -> b: Lib.IntTypes.size_pos{b <= logq /\ b <= 8} -> x: Lib.IntTypes.uint64 -> k: Lib.IntTypes.size_nat{k < 8} -> Prims.Pure Lib.IntTypes.uint16
Prims.Pure
[]
[]
[ "Lib.IntTypes.size_pos", "Prims.b2t", "Prims.op_LessThanOrEqual", "Prims.l_and", "Lib.IntTypes.uint64", "Lib.IntTypes.size_nat", "Prims.op_LessThan", "Spec.Frodo.Encode.ec", "Lib.IntTypes.to_u16", "Lib.IntTypes.U64", "Lib.IntTypes.SEC", "Prims.unit", "FStar.Calc.calc_finish", "Lib.IntTypes...
[]
false
false
false
false
false
let ec1 logq b x k =
let rk = (x >>. size (b * k)) &. ((u64 1 <<. size b) -. u64 1) in Math.Lemmas.pow2_lt_compat 16 b; calc ( == ) { v rk; ( == ) { modulo_pow2_u64 (x >>. size (b * k)) b } v (x >>. size (b * k)) % pow2 b; ( == ) { () } v x / pow2 (b * k) % pow2 b; }; ec logq b (to_u16 rk)
false
Spec.Frodo.Encode.fst
Spec.Frodo.Encode.frodo_key_decode1
val frodo_key_decode1: logq:size_pos{logq <= 16} -> b:size_pos{b < logq /\ b <= 8} -> n:size_pos{n == 8} -> i:size_nat{i < n} -> templong:uint64 -> res:lbytes (n * n * b / 8) -> lbytes (n * n * b / 8)
val frodo_key_decode1: logq:size_pos{logq <= 16} -> b:size_pos{b < logq /\ b <= 8} -> n:size_pos{n == 8} -> i:size_nat{i < n} -> templong:uint64 -> res:lbytes (n * n * b / 8) -> lbytes (n * n * b / 8)
let frodo_key_decode1 logq b n i templong res = update_sub res (i * b) b (LSeq.sub (uint_to_bytes_le templong) 0 b)
{ "file_name": "specs/frodo/Spec.Frodo.Encode.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 69, "end_line": 190, "start_col": 0, "start_line": 189 }
module Spec.Frodo.Encode open FStar.Mul open Lib.IntTypes open Lib.Sequence open Lib.ByteSequence open Spec.Matrix open Spec.Frodo.Lemmas module LSeq = Lib.Sequence module Loops = Lib.LoopCombinators #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" (** The simplified version of the encode and decode functions when...
{ "checked_file": "/", "dependencies": [ "Spec.Matrix.fst.checked", "Spec.Frodo.Lemmas.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.LoopCombinators.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.ByteSequence.fsti.checked", "FStar.Pervasives.Native.fst.checke...
[ { "abbrev": true, "full_module": "Lib.LoopCombinators", "short_module": "Loops" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": false, "full_module": "Spec.Frodo.Lemmas", "short_module": null }, { "abbrev": false, "ful...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
logq: Lib.IntTypes.size_pos{logq <= 16} -> b: Lib.IntTypes.size_pos{b < logq /\ b <= 8} -> n: Lib.IntTypes.size_pos{n == 8} -> i: Lib.IntTypes.size_nat{i < n} -> templong: Lib.IntTypes.uint64 -> res: Lib.ByteSequence.lbytes ((n * n) * b / 8) -> Lib.ByteSequence.lbytes ((n * n) * b / 8)
Prims.Tot
[ "total" ]
[]
[ "Lib.IntTypes.size_pos", "Prims.b2t", "Prims.op_LessThanOrEqual", "Prims.l_and", "Prims.op_LessThan", "Prims.eq2", "Prims.int", "Lib.IntTypes.size_nat", "Lib.IntTypes.uint64", "Lib.ByteSequence.lbytes", "Prims.op_Division", "FStar.Mul.op_Star", "Lib.Sequence.update_sub", "Lib.IntTypes.uint...
[]
false
false
false
false
false
let frodo_key_decode1 logq b n i templong res =
update_sub res (i * b) b (LSeq.sub (uint_to_bytes_le templong) 0 b)
false
Hacl.Impl.Frodo.Gen.fst
Hacl.Impl.Frodo.Gen.frodo_gen_matrix_shake_4x1_get_r
val frodo_gen_matrix_shake_4x1_get_r: n:size_t{v n * v n <= max_size_t /\ v n <= maxint U16} -> tmp_seed:lbytes (18ul *! 4ul) -> r0:lbytes (2ul *! n) -> r1:lbytes (2ul *! n) -> r2:lbytes (2ul *! n) -> r3:lbytes (2ul *! n) -> i:size_t{v i < v n / 4} -> Stack unit (requires fun h -> tmp_seed4_pre h ...
val frodo_gen_matrix_shake_4x1_get_r: n:size_t{v n * v n <= max_size_t /\ v n <= maxint U16} -> tmp_seed:lbytes (18ul *! 4ul) -> r0:lbytes (2ul *! n) -> r1:lbytes (2ul *! n) -> r2:lbytes (2ul *! n) -> r3:lbytes (2ul *! n) -> i:size_t{v i < v n / 4} -> Stack unit (requires fun h -> tmp_seed4_pre h ...
let frodo_gen_matrix_shake_4x1_get_r n tmp_seed r0 r1 r2 r3 i = let tmp_seed0 = sub tmp_seed 0ul 18ul in let tmp_seed1 = sub tmp_seed 18ul 18ul in let tmp_seed2 = sub tmp_seed 36ul 18ul in let tmp_seed3 = sub tmp_seed 54ul 18ul in concat_ind_seed tmp_seed0 (4ul *! i +! 0ul); concat_ind_seed tmp_seed1 (4ul *...
{ "file_name": "code/frodo/Hacl.Impl.Frodo.Gen.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 96, "end_line": 201, "start_col": 0, "start_line": 191 }
module Hacl.Impl.Frodo.Gen open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open LowStar.Buffer open Lib.IntTypes open Lib.Buffer open Lib.ByteBuffer open Hacl.Impl.Matrix module ST = FStar.HyperStack.ST module B = LowStar.Buffer module LSeq = Lib.Sequence module BSeq = Lib.ByteSequence module Loops =...
{ "checked_file": "/", "dependencies": [ "Spec.Frodo.Lemmas.fst.checked", "Spec.Frodo.Gen.fst.checked", "prims.fst.checked", "LowStar.Buffer.fst.checked", "Lib.Sequence.fsti.checked", "Lib.Loops.fsti.checked", "Lib.LoopCombinators.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib....
[ { "abbrev": true, "full_module": "Hacl.SHA3", "short_module": "SHA3" }, { "abbrev": true, "full_module": "Spec.Frodo.Lemmas", "short_module": "Lemmas" }, { "abbrev": true, "full_module": "Spec.Frodo.Gen", "short_module": "S" }, { "abbrev": true, "full_module":...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
n: Lib.IntTypes.size_t { Lib.IntTypes.v n * Lib.IntTypes.v n <= Lib.IntTypes.max_size_t /\ Lib.IntTypes.v n <= Lib.IntTypes.maxint Lib.IntTypes.U16 } -> tmp_seed: Hacl.Impl.Matrix.lbytes (18ul *! 4ul) -> r0: Hacl.Impl.Matrix.lbytes (2ul *! n) -> r1: Hacl.Impl.Matrix.lbytes (2ul ...
FStar.HyperStack.ST.Stack
[]
[]
[ "Lib.IntTypes.size_t", "Prims.l_and", "Prims.b2t", "Prims.op_LessThanOrEqual", "FStar.Mul.op_Star", "Lib.IntTypes.v", "Lib.IntTypes.U32", "Lib.IntTypes.PUB", "Lib.IntTypes.max_size_t", "Lib.IntTypes.maxint", "Lib.IntTypes.U16", "Hacl.Impl.Matrix.lbytes", "Lib.IntTypes.op_Star_Bang", "FStar...
[]
false
true
false
false
false
let frodo_gen_matrix_shake_4x1_get_r n tmp_seed r0 r1 r2 r3 i =
let tmp_seed0 = sub tmp_seed 0ul 18ul in let tmp_seed1 = sub tmp_seed 18ul 18ul in let tmp_seed2 = sub tmp_seed 36ul 18ul in let tmp_seed3 = sub tmp_seed 54ul 18ul in concat_ind_seed tmp_seed0 (4ul *! i +! 0ul); concat_ind_seed tmp_seed1 (4ul *! i +! 1ul); concat_ind_seed tmp_seed2 (4ul *! i +! 2ul); concat_ind_seed tm...
false
Vale.Stdcalls.X64.Poly.fsti
Vale.Stdcalls.X64.Poly.dom
val dom:IX64.arity_ok_stdcall td
val dom:IX64.arity_ok_stdcall td
let dom: IX64.arity_ok_stdcall td = let y = [t64_mod; t64_no_mod; tuint64; tuint64] in assert_norm (List.length y = 4); y
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Poly.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 3, "end_line": 50, "start_col": 0, "start_line": 47 }
module Vale.Stdcalls.X64.Poly open FStar.Mul val z3rlimit_hack (x:nat) : squash (x < x + x + 1) #reset-options "--z3rlimit 50" open FStar.HyperStack.ST module HS = FStar.HyperStack module B = LowStar.Buffer module IB = LowStar.ImmutableBuffer module DV = LowStar.BufferView.Down open Vale.Def.Types_s open Vale.Intero...
{ "checked_file": "/", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Poly1305.X64.fsti.checked", "Vale.Poly1305.Math.fsti.checked", "Vale....
[ { "abbrev": false, "full_module": "Vale.Poly1305.Math", "short_module": null }, { "abbrev": true, "full_module": "Vale.Poly1305.X64", "short_module": "PO" }, { "abbrev": true, "full_module": "Vale.X64.Machine_s", "short_module": "MS" }, { "abbrev": true, "full...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
Vale.Interop.X64.arity_ok_stdcall Vale.Interop.Base.td
Prims.Tot
[ "total" ]
[]
[ "Prims.unit", "FStar.Pervasives.assert_norm", "Prims.b2t", "Prims.op_Equality", "Prims.int", "FStar.List.Tot.Base.length", "Vale.Interop.Base.td", "Prims.list", "Prims.Cons", "Vale.Stdcalls.X64.Poly.t64_mod", "Vale.Stdcalls.X64.Poly.t64_no_mod", "Vale.Stdcalls.X64.Poly.tuint64", "Prims.Nil" ...
[]
false
false
false
true
false
let dom:IX64.arity_ok_stdcall td =
let y = [t64_mod; t64_no_mod; tuint64; tuint64] in assert_norm (List.length y = 4); y
false
Vale.Stdcalls.X64.Poly.fsti
Vale.Stdcalls.X64.Poly.poly_post
val poly_post:VSig.vale_post dom
val poly_post:VSig.vale_post dom
let poly_post : VSig.vale_post dom = fun (c:V.va_code) (ctx_b:b64) (inp_b:b64) (len:uint64) (finish:uint64) (va_s0:V.va_state) (va_s1:V.va_state) (f:V.va_fuel) -> PO.va_ens_Poly1305 c va_s0 IA.win (as_vale_buffer ctx_b) (as_vale_buffer inp_b) (UInt64.v len) (UInt64.v finish) ...
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Poly.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 15, "end_line": 77, "start_col": 0, "start_line": 66 }
module Vale.Stdcalls.X64.Poly open FStar.Mul val z3rlimit_hack (x:nat) : squash (x < x + x + 1) #reset-options "--z3rlimit 50" open FStar.HyperStack.ST module HS = FStar.HyperStack module B = LowStar.Buffer module IB = LowStar.ImmutableBuffer module DV = LowStar.BufferView.Down open Vale.Def.Types_s open Vale.Intero...
{ "checked_file": "/", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Poly1305.X64.fsti.checked", "Vale.Poly1305.Math.fsti.checked", "Vale....
[ { "abbrev": false, "full_module": "Vale.Poly1305.Math", "short_module": null }, { "abbrev": true, "full_module": "Vale.Poly1305.X64", "short_module": "PO" }, { "abbrev": true, "full_module": "Vale.X64.Machine_s", "short_module": "MS" }, { "abbrev": true, "full...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
Vale.AsLowStar.ValeSig.vale_post Vale.Stdcalls.X64.Poly.dom
Prims.Tot
[ "total" ]
[]
[ "Vale.X64.Decls.va_code", "Vale.Stdcalls.X64.Poly.b64", "Vale.Stdcalls.X64.Poly.uint64", "Vale.X64.Decls.va_state", "Vale.X64.Decls.va_fuel", "Vale.Poly1305.X64.va_ens_Poly1305", "Vale.Interop.Assumptions.win", "Vale.X64.MemoryAdapters.as_vale_buffer", "Vale.Arch.HeapTypes_s.TUInt8", "Vale.Arch.He...
[]
false
false
false
true
false
let poly_post:VSig.vale_post dom =
fun (c: V.va_code) (ctx_b: b64) (inp_b: b64) (len: uint64) (finish: uint64) (va_s0: V.va_state) (va_s1: V.va_state) (f: V.va_fuel) -> PO.va_ens_Poly1305 c va_s0 IA.win (as_vale_buffer ctx_b) (as_vale_buffer inp_b) (UInt64.v len) (UInt64.v finish) va_s1 f
false
LowParse.Spec.Bytes.fst
LowParse.Spec.Bytes.parse_bounded_vlbytes_eq
val parse_bounded_vlbytes_eq (min: nat) (max: nat{min <= max /\ max > 0 /\ max < 4294967296}) (l: nat{l >= log256' max /\ l <= 4}) (input: bytes) : Lemma (let res = parse (parse_bounded_vlbytes' min max l) input in match parse (parse_bounded_integer l) input with | None -> re...
val parse_bounded_vlbytes_eq (min: nat) (max: nat{min <= max /\ max > 0 /\ max < 4294967296}) (l: nat{l >= log256' max /\ l <= 4}) (input: bytes) : Lemma (let res = parse (parse_bounded_vlbytes' min max l) input in match parse (parse_bounded_integer l) input with | None -> re...
let parse_bounded_vlbytes_eq (min: nat) (max: nat { min <= max /\ max > 0 /\ max < 4294967296 } ) (l: nat { l >= log256' max /\ l <= 4 } ) (input: bytes) : Lemma (let res = parse (parse_bounded_vlbytes' min max l) input in match parse (parse_bounded_integer l) input with | None -> res == None | So...
{ "file_name": "src/lowparse/LowParse.Spec.Bytes.fst", "git_rev": "00217c4a89f5ba56002ba9aa5b4a9d5903bfe9fa", "git_url": "https://github.com/project-everest/everparse.git", "project_name": "everparse" }
{ "end_col": 83, "end_line": 217, "start_col": 0, "start_line": 197 }
module LowParse.Spec.Bytes include LowParse.Spec.VLGen module B32 = LowParse.Bytes32 module Seq = FStar.Seq module U32 = FStar.UInt32 #set-options "--z3rlimit 128 --max_fuel 64 --max_ifuel 64" let lt_pow2_32 (x: nat) : Lemma (x < 4294967296 <==> x < pow2 32) = () #reset-options let parse_flbytes_gen (sz: nat...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "LowParse.Spec.VLGen.fst.checked", "LowParse.Bytes32.fst.checked", "FStar.UInt32.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Classical.fsti.checked...
[ { "abbrev": true, "full_module": "FStar.UInt32", "short_module": "U32" }, { "abbrev": true, "full_module": "FStar.Seq", "short_module": "Seq" }, { "abbrev": true, "full_module": "LowParse.Bytes32", "short_module": "B32" }, { "abbrev": false, "full_module": "Lo...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
min: Prims.nat -> max: Prims.nat{min <= max /\ max > 0 /\ max < 4294967296} -> l: Prims.nat{l >= LowParse.Spec.BoundedInt.log256' max /\ l <= 4} -> input: LowParse.Bytes.bytes -> FStar.Pervasives.Lemma (ensures (let res = LowParse.Spec.Base.parse (LowParse.Spec.Bytes.parse_bounded...
FStar.Pervasives.Lemma
[ "lemma" ]
[]
[ "Prims.nat", "Prims.l_and", "Prims.b2t", "Prims.op_LessThanOrEqual", "Prims.op_GreaterThan", "Prims.op_LessThan", "Prims.op_GreaterThanOrEqual", "LowParse.Spec.BoundedInt.log256'", "LowParse.Bytes.bytes", "LowParse.Spec.Base.parser_kind_prop_equiv", "LowParse.Spec.BoundedInt.bounded_integer", ...
[]
true
false
true
false
false
let parse_bounded_vlbytes_eq (min: nat) (max: nat{min <= max /\ max > 0 /\ max < 4294967296}) (l: nat{l >= log256' max /\ l <= 4}) (input: bytes) : Lemma (let res = parse (parse_bounded_vlbytes' min max l) input in match parse (parse_bounded_integer l) input with | None -> re...
let sz = l in parse_synth_eq (parse_bounded_vlbytes_aux min max l) (synth_bounded_vlbytes min max) input; parse_vldata_gen_eq sz (in_bounds min max) parse_all_bytes input; parser_kind_prop_equiv (parse_bounded_integer_kind sz) (parse_bounded_integer sz)
false
Vale.Stdcalls.X64.Poly.fsti
Vale.Stdcalls.X64.Poly.poly_pre
val poly_pre:VSig.vale_pre dom
val poly_pre:VSig.vale_pre dom
let poly_pre : VSig.vale_pre dom = fun (c:V.va_code) (ctx_b:b64) (inp_b:b64) (len:uint64) (finish:uint64) (va_s0:V.va_state) -> PO.va_req_Poly1305 c va_s0 IA.win (as_vale_buffer ctx_b) (as_vale_buffer inp_b) (UInt64.v len) (UInt64.v finish)
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Poly.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 86, "end_line": 62, "start_col": 0, "start_line": 54 }
module Vale.Stdcalls.X64.Poly open FStar.Mul val z3rlimit_hack (x:nat) : squash (x < x + x + 1) #reset-options "--z3rlimit 50" open FStar.HyperStack.ST module HS = FStar.HyperStack module B = LowStar.Buffer module IB = LowStar.ImmutableBuffer module DV = LowStar.BufferView.Down open Vale.Def.Types_s open Vale.Intero...
{ "checked_file": "/", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Poly1305.X64.fsti.checked", "Vale.Poly1305.Math.fsti.checked", "Vale....
[ { "abbrev": false, "full_module": "Vale.Poly1305.Math", "short_module": null }, { "abbrev": true, "full_module": "Vale.Poly1305.X64", "short_module": "PO" }, { "abbrev": true, "full_module": "Vale.X64.Machine_s", "short_module": "MS" }, { "abbrev": true, "full...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
Vale.AsLowStar.ValeSig.vale_pre Vale.Stdcalls.X64.Poly.dom
Prims.Tot
[ "total" ]
[]
[ "Vale.X64.Decls.va_code", "Vale.Stdcalls.X64.Poly.b64", "Vale.Stdcalls.X64.Poly.uint64", "Vale.X64.Decls.va_state", "Vale.Poly1305.X64.va_req_Poly1305", "Vale.Interop.Assumptions.win", "Vale.X64.MemoryAdapters.as_vale_buffer", "Vale.Arch.HeapTypes_s.TUInt8", "Vale.Arch.HeapTypes_s.TUInt64", "FStar...
[]
false
false
false
true
false
let poly_pre:VSig.vale_pre dom =
fun (c: V.va_code) (ctx_b: b64) (inp_b: b64) (len: uint64) (finish: uint64) (va_s0: V.va_state) -> PO.va_req_Poly1305 c va_s0 IA.win (as_vale_buffer ctx_b) (as_vale_buffer inp_b) (UInt64.v len) (UInt64.v finish)
false
Hacl.P256.PrecompTable.fst
Hacl.P256.PrecompTable.precomp_basepoint_table_w5
val precomp_basepoint_table_w5: x:glbuffer uint64 384ul{witnessed x precomp_basepoint_table_lseq_w5 /\ recallable x}
val precomp_basepoint_table_w5: x:glbuffer uint64 384ul{witnessed x precomp_basepoint_table_lseq_w5 /\ recallable x}
let precomp_basepoint_table_w5: x:glbuffer uint64 384ul{witnessed x precomp_basepoint_table_lseq_w5 /\ recallable x} = createL_global precomp_basepoint_table_list_w5
{ "file_name": "code/ecdsap256/Hacl.P256.PrecompTable.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 48, "end_line": 295, "start_col": 0, "start_line": 293 }
module Hacl.P256.PrecompTable open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer module ST = FStar.HyperStack.ST module LSeq = Lib.Sequence module LE = Lib.Exponentiation module SE = Spec.Exponentiation module SPT = Hacl.Spec.PrecompBaseTable module SPT256 = Hacl.Spec.Pr...
{ "checked_file": "/", "dependencies": [ "Spec.P256.Lemmas.fsti.checked", "Spec.P256.fst.checked", "Spec.Exponentiation.fsti.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Exponentiation.fsti.checked", "Lib.Buffer.fsti.checked", "Hac...
[ { "abbrev": true, "full_module": "Spec.P256.Lemmas", "short_module": "SL" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.PrecompTable", "short_module": "SPTK" }, { "abbrev": true, "full_module": "Hacl.Spec.PrecompBaseTable256", "short_module": "SPT256" }, { "...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
x: Lib.Buffer.glbuffer Lib.IntTypes.uint64 384ul { Lib.Buffer.witnessed x Hacl.P256.PrecompTable.precomp_basepoint_table_lseq_w5 /\ Lib.Buffer.recallable x }
Prims.Tot
[ "total" ]
[]
[ "Lib.Buffer.createL_global", "Lib.IntTypes.int_t", "Lib.IntTypes.U64", "Lib.IntTypes.SEC", "Hacl.P256.PrecompTable.precomp_basepoint_table_list_w5", "Lib.Buffer.glbuffer", "Lib.IntTypes.size", "FStar.Pervasives.normalize_term", "Lib.IntTypes.size_nat", "FStar.List.Tot.Base.length", "Lib.IntTypes...
[]
false
false
false
false
false
let precomp_basepoint_table_w5:x: glbuffer uint64 384ul {witnessed x precomp_basepoint_table_lseq_w5 /\ recallable x} =
createL_global precomp_basepoint_table_list_w5
false
Vale.Curve25519.FastHybrid_helpers.fsti
Vale.Curve25519.FastHybrid_helpers.lemma_mul_pow256_add
val lemma_mul_pow256_add (x y: nat) : Lemma ((x + y * pow2_256) % prime == (x + y * 38) % prime)
val lemma_mul_pow256_add (x y: nat) : Lemma ((x + y * pow2_256) % prime == (x + y * 38) % prime)
let lemma_mul_pow256_add (x y:nat) : Lemma ((x + y * pow2_256) % prime == (x + y * 38) % prime) = assert_norm (pow2_256 % prime == 38); ()
{ "file_name": "vale/code/crypto/ecc/curve25519/Vale.Curve25519.FastHybrid_helpers.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 4, "end_line": 21, "start_col": 0, "start_line": 17 }
module Vale.Curve25519.FastHybrid_helpers open Vale.Def.Words_s open Vale.Def.Types_s open FStar.Mul open FStar.Tactics open FStar.Tactics.CanonCommSemiring open Vale.Curve25519.Fast_defs open FStar.Calc let int_canon = fun _ -> norm [delta; zeta; iota]; int_semiring () //; dump "Final" unfold let pow2_63:nat = 0x80...
{ "checked_file": "/", "dependencies": [ "Vale.Def.Words_s.fsti.checked", "Vale.Def.Types_s.fst.checked", "Vale.Curve25519.Fast_defs.fst.checked", "prims.fst.checked", "FStar.Tactics.CanonCommSemiring.fst.checked", "FStar.Tactics.fst.checked", "FStar.Pervasives.fsti.checked", "FStar....
[ { "abbrev": false, "full_module": "FStar.Calc", "short_module": null }, { "abbrev": false, "full_module": "Vale.Curve25519.Fast_defs", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics.CanonCommSemiring", "short_module": null }, { "abbrev": ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
x: Prims.nat -> y: Prims.nat -> FStar.Pervasives.Lemma (ensures (x + y * Vale.Curve25519.Fast_defs.pow2_256) % Vale.Curve25519.Fast_defs.prime == (x + y * 38) % Vale.Curve25519.Fast_defs.prime)
FStar.Pervasives.Lemma
[ "lemma" ]
[]
[ "Prims.nat", "Prims.unit", "FStar.Pervasives.assert_norm", "Prims.eq2", "Prims.int", "Prims.op_Modulus", "Vale.Curve25519.Fast_defs.pow2_256", "Vale.Curve25519.Fast_defs.prime", "Prims.l_True", "Prims.squash", "Prims.op_Addition", "FStar.Mul.op_Star", "Prims.Nil", "FStar.Pervasives.pattern...
[]
true
false
true
false
false
let lemma_mul_pow256_add (x y: nat) : Lemma ((x + y * pow2_256) % prime == (x + y * 38) % prime) =
assert_norm (pow2_256 % prime == 38); ()
false
Vale.Stdcalls.X64.Poly.fsti
Vale.Stdcalls.X64.Poly.lowstar_poly_t
val lowstar_poly_t : Type0
let lowstar_poly_t = IX64.as_lowstar_sig_t_weak_stdcall code_poly dom [] _ _ (W.mk_prediction code_poly dom [] (poly_lemma code_poly IA.win))
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Poly.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 68, "end_line": 122, "start_col": 0, "start_line": 115 }
module Vale.Stdcalls.X64.Poly open FStar.Mul val z3rlimit_hack (x:nat) : squash (x < x + x + 1) #reset-options "--z3rlimit 50" open FStar.HyperStack.ST module HS = FStar.HyperStack module B = LowStar.Buffer module IB = LowStar.ImmutableBuffer module DV = LowStar.BufferView.Down open Vale.Def.Types_s open Vale.Intero...
{ "checked_file": "/", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Poly1305.X64.fsti.checked", "Vale.Poly1305.Math.fsti.checked", "Vale....
[ { "abbrev": true, "full_module": "Vale.X64.State", "short_module": "VS" }, { "abbrev": false, "full_module": "Vale.Poly1305.Math", "short_module": null }, { "abbrev": true, "full_module": "Vale.Poly1305.X64", "short_module": "PO" }, { "abbrev": true, "full_mod...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
Type0
Prims.Tot
[ "total" ]
[]
[ "Vale.Interop.X64.as_lowstar_sig_t_weak_stdcall", "Vale.Stdcalls.X64.Poly.code_poly", "Vale.Stdcalls.X64.Poly.dom", "Prims.Nil", "Vale.Interop.Base.arg", "Vale.AsLowStar.Wrapper.pre_rel_generic", "Vale.Interop.X64.max_stdcall", "Vale.Interop.X64.arg_reg_stdcall", "Vale.Stdcalls.X64.Poly.poly_pre", ...
[]
false
false
false
true
true
let lowstar_poly_t =
IX64.as_lowstar_sig_t_weak_stdcall code_poly dom [] _ _ (W.mk_prediction code_poly dom [] (poly_lemma code_poly IA.win))
false
Vale.Stdcalls.X64.Poly.fsti
Vale.Stdcalls.X64.Poly.poly_lemma
val poly_lemma : Vale.AsLowStar.ValeSig.vale_sig_stdcall Vale.Stdcalls.X64.Poly.poly_pre Vale.Stdcalls.X64.Poly.poly_post
let poly_lemma = as_t #(VSig.vale_sig_stdcall poly_pre poly_post) poly_lemma'
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Poly.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 77, "end_line": 109, "start_col": 0, "start_line": 109 }
module Vale.Stdcalls.X64.Poly open FStar.Mul val z3rlimit_hack (x:nat) : squash (x < x + x + 1) #reset-options "--z3rlimit 50" open FStar.HyperStack.ST module HS = FStar.HyperStack module B = LowStar.Buffer module IB = LowStar.ImmutableBuffer module DV = LowStar.BufferView.Down open Vale.Def.Types_s open Vale.Intero...
{ "checked_file": "/", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Poly1305.X64.fsti.checked", "Vale.Poly1305.Math.fsti.checked", "Vale....
[ { "abbrev": true, "full_module": "Vale.X64.State", "short_module": "VS" }, { "abbrev": false, "full_module": "Vale.Poly1305.Math", "short_module": null }, { "abbrev": true, "full_module": "Vale.Poly1305.X64", "short_module": "PO" }, { "abbrev": true, "full_mod...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
Vale.AsLowStar.ValeSig.vale_sig_stdcall Vale.Stdcalls.X64.Poly.poly_pre Vale.Stdcalls.X64.Poly.poly_post
Prims.Tot
[ "total" ]
[]
[ "Vale.Stdcalls.X64.Poly.as_t", "Vale.AsLowStar.ValeSig.vale_sig_stdcall", "Vale.Stdcalls.X64.Poly.dom", "Vale.Stdcalls.X64.Poly.poly_pre", "Vale.Stdcalls.X64.Poly.poly_post", "Vale.Stdcalls.X64.Poly.poly_lemma'" ]
[]
false
false
false
true
false
let poly_lemma =
as_t #(VSig.vale_sig_stdcall poly_pre poly_post) poly_lemma'
false
Vale.Stdcalls.X64.Poly.fsti
Vale.Stdcalls.X64.Poly.poly_lemma'
val poly_lemma' (code: V.va_code) (_win: bool) (ctx_b inp_b: b64) (len finish: uint64) (va_s0: V.va_state) : Ghost (V.va_state & V.va_fuel) (requires poly_pre code ctx_b inp_b len finish va_s0) (ensures (fun (va_s1, f) -> V.eval_code code va_s0 f va_s1 /...
val poly_lemma' (code: V.va_code) (_win: bool) (ctx_b inp_b: b64) (len finish: uint64) (va_s0: V.va_state) : Ghost (V.va_state & V.va_fuel) (requires poly_pre code ctx_b inp_b len finish va_s0) (ensures (fun (va_s1, f) -> V.eval_code code va_s0 f va_s1 /...
let poly_lemma' (code:V.va_code) (_win:bool) (ctx_b:b64) (inp_b:b64) (len:uint64) (finish:uint64) (va_s0:V.va_state) : Ghost (V.va_state & V.va_fuel) (requires poly_pre code ctx_b inp_b len finish va_s0) (ensures (fun (va_s1, f) -> V.eval_code code va_s0 f va_s1 /\ ...
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Poly.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 11, "end_line": 105, "start_col": 0, "start_line": 84 }
module Vale.Stdcalls.X64.Poly open FStar.Mul val z3rlimit_hack (x:nat) : squash (x < x + x + 1) #reset-options "--z3rlimit 50" open FStar.HyperStack.ST module HS = FStar.HyperStack module B = LowStar.Buffer module IB = LowStar.ImmutableBuffer module DV = LowStar.BufferView.Down open Vale.Def.Types_s open Vale.Intero...
{ "checked_file": "/", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Poly1305.X64.fsti.checked", "Vale.Poly1305.Math.fsti.checked", "Vale....
[ { "abbrev": true, "full_module": "Vale.X64.State", "short_module": "VS" }, { "abbrev": false, "full_module": "Vale.Poly1305.Math", "short_module": null }, { "abbrev": true, "full_module": "Vale.Poly1305.X64", "short_module": "PO" }, { "abbrev": true, "full_mod...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
code: Vale.X64.Decls.va_code -> _win: Prims.bool -> ctx_b: Vale.Stdcalls.X64.Poly.b64 -> inp_b: Vale.Stdcalls.X64.Poly.b64 -> len: Vale.Stdcalls.X64.Poly.uint64 -> finish: Vale.Stdcalls.X64.Poly.uint64 -> va_s0: Vale.X64.Decls.va_state -> Prims.Ghost (Vale.X64.Decls.va_state * Vale.X64.De...
Prims.Ghost
[]
[]
[ "Vale.X64.Decls.va_code", "Prims.bool", "Vale.Stdcalls.X64.Poly.b64", "Vale.Stdcalls.X64.Poly.uint64", "Vale.X64.Decls.va_state", "Vale.X64.Decls.va_fuel", "FStar.Pervasives.Native.Mktuple2", "Prims.unit", "Vale.AsLowStar.MemoryHelpers.buffer_writeable_reveal", "Vale.Arch.HeapTypes_s.TUInt8", "V...
[]
false
false
false
false
false
let poly_lemma' (code: V.va_code) (_win: bool) (ctx_b inp_b: b64) (len finish: uint64) (va_s0: V.va_state) : Ghost (V.va_state & V.va_fuel) (requires poly_pre code ctx_b inp_b len finish va_s0) (ensures (fun (va_s1, f) -> V.eval_code code va_s0 f va_s1 /...
let va_s1, f = PO.va_lemma_Poly1305 code va_s0 IA.win (as_vale_buffer ctx_b) (as_vale_buffer inp_b) (UInt64.v len) (UInt64.v finish) in Vale.AsLowStar.MemoryHelpers.buffer_writeable_reveal ME.TUInt8 ME.TUInt64 ctx_b; Vale.AsLowStar.MemoryHelpers.buffer_writeable_reveal ME.TUInt8 ME.TUInt64 inp...
false
Hacl.Impl.Frodo.Gen.fst
Hacl.Impl.Frodo.Gen.frodo_gen_matrix_shake_4x
val frodo_gen_matrix_shake_4x: n:size_t{0 < v n /\ v n * v n <= max_size_t /\ v n <= maxint U16 /\ v n % 4 = 0} -> seed:lbytes 16ul -> res:matrix_t n n -> Stack unit (requires fun h -> live h seed /\ live h res /\ disjoint seed res) (ensures fun h0 _ h1 -> modifies (loc res) h0 h1 /\ as_m...
val frodo_gen_matrix_shake_4x: n:size_t{0 < v n /\ v n * v n <= max_size_t /\ v n <= maxint U16 /\ v n % 4 = 0} -> seed:lbytes 16ul -> res:matrix_t n n -> Stack unit (requires fun h -> live h seed /\ live h res /\ disjoint seed res) (ensures fun h0 _ h1 -> modifies (loc res) h0 h1 /\ as_m...
let frodo_gen_matrix_shake_4x n seed res = push_frame (); let r = create (size 8 *! n) (u8 0) in let tmp_seed = create 72ul (u8 0) in copy (sub tmp_seed 2ul 16ul) seed; copy (sub tmp_seed 20ul 16ul) seed; copy (sub tmp_seed 38ul 16ul) seed; copy (sub tmp_seed 56ul 16ul) seed; memset res (u16 0) (n *! n...
{ "file_name": "code/frodo/Hacl.Impl.Frodo.Gen.fst", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 14, "end_line": 281, "start_col": 0, "start_line": 249 }
module Hacl.Impl.Frodo.Gen open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open LowStar.Buffer open Lib.IntTypes open Lib.Buffer open Lib.ByteBuffer open Hacl.Impl.Matrix module ST = FStar.HyperStack.ST module B = LowStar.Buffer module LSeq = Lib.Sequence module BSeq = Lib.ByteSequence module Loops =...
{ "checked_file": "/", "dependencies": [ "Spec.Frodo.Lemmas.fst.checked", "Spec.Frodo.Gen.fst.checked", "prims.fst.checked", "LowStar.Buffer.fst.checked", "Lib.Sequence.fsti.checked", "Lib.Loops.fsti.checked", "Lib.LoopCombinators.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib....
[ { "abbrev": true, "full_module": "Hacl.SHA3", "short_module": "SHA3" }, { "abbrev": true, "full_module": "Spec.Frodo.Lemmas", "short_module": "Lemmas" }, { "abbrev": true, "full_module": "Spec.Frodo.Gen", "short_module": "S" }, { "abbrev": true, "full_module":...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
n: Lib.IntTypes.size_t { 0 < Lib.IntTypes.v n /\ Lib.IntTypes.v n * Lib.IntTypes.v n <= Lib.IntTypes.max_size_t /\ Lib.IntTypes.v n <= Lib.IntTypes.maxint Lib.IntTypes.U16 /\ Lib.IntTypes.v n % 4 = 0 } -> seed: Hacl.Impl.Matrix.lbytes 16ul -> res: Hacl.Impl.Matrix.matrix_t n n -> ...
FStar.HyperStack.ST.Stack
[]
[]
[ "Lib.IntTypes.size_t", "Prims.l_and", "Prims.b2t", "Prims.op_LessThan", "Lib.IntTypes.v", "Lib.IntTypes.U32", "Lib.IntTypes.PUB", "Prims.op_LessThanOrEqual", "FStar.Mul.op_Star", "Lib.IntTypes.max_size_t", "Lib.IntTypes.maxint", "Lib.IntTypes.U16", "Prims.op_Equality", "Prims.int", "Prim...
[]
false
true
false
false
false
let frodo_gen_matrix_shake_4x n seed res =
push_frame (); let r = create (size 8 *! n) (u8 0) in let tmp_seed = create 72ul (u8 0) in copy (sub tmp_seed 2ul 16ul) seed; copy (sub tmp_seed 20ul 16ul) seed; copy (sub tmp_seed 38ul 16ul) seed; copy (sub tmp_seed 56ul 16ul) seed; memset res (u16 0) (n *! n); let h0 = ST.get () in assert (tmp_seed4_pre h0 tmp_seed);...
false
Vale.Lib.Lists.fsti
Vale.Lib.Lists.from_list_be
val from_list_be (l: list bool) : int
val from_list_be (l: list bool) : int
let from_list_be (l:list bool) : int = from_list_le (List.rev l)
{ "file_name": "vale/code/lib/collections/Vale.Lib.Lists.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 27, "end_line": 39, "start_col": 0, "start_line": 38 }
module Vale.Lib.Lists open FStar.List.Tot open FStar.Seq open FStar.UInt open FStar.Mul module List = FStar.List.Tot open FStar.List.Tot.Properties val singleton_list_rev (#a:Type) (x:a) : Lemma (List.rev [x] == [x]) val list_cons_is_append (#a:Type) (h:a) (t:list a) : Lemma (h::t == [h] @ t) val singleton_list...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.UInt.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot.Properties.fst.checked", "FStar.List.Tot.fst.checked" ], "interface_file": false, "source_file...
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.List.Tot.Properties", "short_module": null }, { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
l: Prims.list Prims.bool -> Prims.int
Prims.Tot
[ "total" ]
[]
[ "Prims.list", "Prims.bool", "Vale.Lib.Lists.from_list_le", "FStar.List.Tot.Base.rev", "Prims.int" ]
[]
false
false
false
true
false
let from_list_be (l: list bool) : int =
from_list_le (List.rev l)
false
Vale.Lib.Lists.fsti
Vale.Lib.Lists.from_list_le
val from_list_le (l: list bool) : int
val from_list_le (l: list bool) : int
let rec from_list_le (l:list bool) : int = match l with | [] -> 0 | h::t -> (if h then 1 else 0) + 2 * (from_list_le t)
{ "file_name": "vale/code/lib/collections/Vale.Lib.Lists.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 55, "end_line": 36, "start_col": 0, "start_line": 33 }
module Vale.Lib.Lists open FStar.List.Tot open FStar.Seq open FStar.UInt open FStar.Mul module List = FStar.List.Tot open FStar.List.Tot.Properties val singleton_list_rev (#a:Type) (x:a) : Lemma (List.rev [x] == [x]) val list_cons_is_append (#a:Type) (h:a) (t:list a) : Lemma (h::t == [h] @ t) val singleton_list...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.UInt.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot.Properties.fst.checked", "FStar.List.Tot.fst.checked" ], "interface_file": false, "source_file...
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.List.Tot.Properties", "short_module": null }, { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
l: Prims.list Prims.bool -> Prims.int
Prims.Tot
[ "total" ]
[]
[ "Prims.list", "Prims.bool", "Prims.op_Addition", "Prims.int", "FStar.Mul.op_Star", "Vale.Lib.Lists.from_list_le" ]
[ "recursion" ]
false
false
false
true
false
let rec from_list_le (l: list bool) : int =
match l with | [] -> 0 | h :: t -> (if h then 1 else 0) + 2 * (from_list_le t)
false
OPLSS2021.Vector.fst
OPLSS2021.Vector.nth
val nth (#a: _) (n: nat) (#m: nat{m > n}) (v: vector a m) : a
val nth (#a: _) (n: nat) (#m: nat{m > n}) (v: vector a m) : a
let rec nth #a (n:nat) (#m:nat{m > n}) (v:vector a m) : a = let VCons x xs = v in // F* can prove that since m > n, m > 0, and so v <> VNil if n = 0 then x else nth (n-1) xs
{ "file_name": "examples/oplss2021/OPLSS2021.Vector.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 19, "end_line": 27, "start_col": 0, "start_line": 23 }
module OPLSS2021.Vector //////////////////////////////////////////////////////////////////////////////// // Vectors //////////////////////////////////////////////////////////////////////////////// type vector (a:Type) : nat -> Type = | VNil : vector a 0 | VCons : hd:a -> #n:nat //implicit argument, you ...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked" ], "interface_file": false, "source_file": "OPLSS2021.Vector.fst" }
[ { "abbrev": false, "full_module": "OPLSS2021", "short_module": null }, { "abbrev": false, "full_module": "OPLSS2021", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasives", "short_module": null }, { "abbrev": false, "full_module": "Prims...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
n: Prims.nat -> v: OPLSS2021.Vector.vector a m -> a
Prims.Tot
[ "total" ]
[]
[ "Prims.nat", "Prims.b2t", "Prims.op_GreaterThan", "OPLSS2021.Vector.vector", "Prims.op_Equality", "Prims.int", "Prims.bool", "OPLSS2021.Vector.nth", "Prims.op_Subtraction" ]
[ "recursion" ]
false
false
false
false
false
let rec nth #a (n: nat) (#m: nat{m > n}) (v: vector a m) : a =
let VCons x xs = v in if n = 0 then x else nth (n - 1) xs
false
OPLSS2021.Vector.fst
OPLSS2021.Vector.append
val append (#a #n1 #n2: _) (v1: vector a n1) (v2: vector a n2) : vector a (n1 + n2)
val append (#a #n1 #n2: _) (v1: vector a n1) (v2: vector a n2) : vector a (n1 + n2)
let rec append #a #n1 #n2 (v1:vector a n1) (v2:vector a n2) : vector a (n1 + n2) = match v1 with | VNil -> v2 | VCons hd tl -> VCons hd (append tl v2)
{ "file_name": "examples/oplss2021/OPLSS2021.Vector.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 44, "end_line": 33, "start_col": 0, "start_line": 29 }
module OPLSS2021.Vector //////////////////////////////////////////////////////////////////////////////// // Vectors //////////////////////////////////////////////////////////////////////////////// type vector (a:Type) : nat -> Type = | VNil : vector a 0 | VCons : hd:a -> #n:nat //implicit argument, you ...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked" ], "interface_file": false, "source_file": "OPLSS2021.Vector.fst" }
[ { "abbrev": false, "full_module": "OPLSS2021", "short_module": null }, { "abbrev": false, "full_module": "OPLSS2021", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasives", "short_module": null }, { "abbrev": false, "full_module": "Prims...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
v1: OPLSS2021.Vector.vector a n1 -> v2: OPLSS2021.Vector.vector a n2 -> OPLSS2021.Vector.vector a (n1 + n2)
Prims.Tot
[ "total" ]
[]
[ "Prims.nat", "OPLSS2021.Vector.vector", "OPLSS2021.Vector.VCons", "Prims.op_Addition", "OPLSS2021.Vector.append" ]
[ "recursion" ]
false
false
false
false
false
let rec append #a #n1 #n2 (v1: vector a n1) (v2: vector a n2) : vector a (n1 + n2) =
match v1 with | VNil -> v2 | VCons hd tl -> VCons hd (append tl v2)
false
OPLSS2021.Vector.fst
OPLSS2021.Vector.fold_right
val fold_right (#a #b: _) (f: (a -> b -> b)) (#n: _) (v: vector a n) (acc: b) : b
val fold_right (#a #b: _) (f: (a -> b -> b)) (#n: _) (v: vector a n) (acc: b) : b
let rec fold_right #a #b (f: a -> b -> b) #n (v:vector a n) (acc: b) : b = match v with | VNil -> acc | VCons hd tl -> f hd (fold_right f tl acc)
{ "file_name": "examples/oplss2021/OPLSS2021.Vector.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 47, "end_line": 51, "start_col": 0, "start_line": 47 }
module OPLSS2021.Vector //////////////////////////////////////////////////////////////////////////////// // Vectors //////////////////////////////////////////////////////////////////////////////// type vector (a:Type) : nat -> Type = | VNil : vector a 0 | VCons : hd:a -> #n:nat //implicit argument, you ...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked" ], "interface_file": false, "source_file": "OPLSS2021.Vector.fst" }
[ { "abbrev": false, "full_module": "OPLSS2021", "short_module": null }, { "abbrev": false, "full_module": "OPLSS2021", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasives", "short_module": null }, { "abbrev": false, "full_module": "Prims...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
f: (_: a -> _: b -> b) -> v: OPLSS2021.Vector.vector a n -> acc: b -> b
Prims.Tot
[ "total" ]
[]
[ "Prims.nat", "OPLSS2021.Vector.vector", "OPLSS2021.Vector.fold_right" ]
[ "recursion" ]
false
false
false
false
false
let rec fold_right #a #b (f: (a -> b -> b)) #n (v: vector a n) (acc: b) : b =
match v with | VNil -> acc | VCons hd tl -> f hd (fold_right f tl acc)
false
OPLSS2021.Vector.fst
OPLSS2021.Vector.reverse
val reverse (#a #n: _) (v: vector a n) : vector a n
val reverse (#a #n: _) (v: vector a n) : vector a n
let rec reverse #a #n (v:vector a n) : vector a n = match v with | VNil -> VNil | VCons hd tl -> append (reverse tl) (VCons hd VNil)
{ "file_name": "examples/oplss2021/OPLSS2021.Vector.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 56, "end_line": 39, "start_col": 0, "start_line": 35 }
module OPLSS2021.Vector //////////////////////////////////////////////////////////////////////////////// // Vectors //////////////////////////////////////////////////////////////////////////////// type vector (a:Type) : nat -> Type = | VNil : vector a 0 | VCons : hd:a -> #n:nat //implicit argument, you ...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked" ], "interface_file": false, "source_file": "OPLSS2021.Vector.fst" }
[ { "abbrev": false, "full_module": "OPLSS2021", "short_module": null }, { "abbrev": false, "full_module": "OPLSS2021", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasives", "short_module": null }, { "abbrev": false, "full_module": "Prims...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
v: OPLSS2021.Vector.vector a n -> OPLSS2021.Vector.vector a n
Prims.Tot
[ "total" ]
[]
[ "Prims.nat", "OPLSS2021.Vector.vector", "OPLSS2021.Vector.VNil", "OPLSS2021.Vector.append", "OPLSS2021.Vector.reverse", "OPLSS2021.Vector.VCons" ]
[ "recursion" ]
false
false
false
false
false
let rec reverse #a #n (v: vector a n) : vector a n =
match v with | VNil -> VNil | VCons hd tl -> append (reverse tl) (VCons hd VNil)
false
OPLSS2021.Vector.fst
OPLSS2021.Vector.map
val map (#a #b: _) (f: (a -> b)) (#n: _) (v: vector a n) : vector b n
val map (#a #b: _) (f: (a -> b)) (#n: _) (v: vector a n) : vector b n
let rec map #a #b (f:a -> b) #n (v:vector a n) : vector b n = match v with | VNil -> VNil | VCons hd tl -> VCons (f hd) (map f tl)
{ "file_name": "examples/oplss2021/OPLSS2021.Vector.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 44, "end_line": 45, "start_col": 0, "start_line": 41 }
module OPLSS2021.Vector //////////////////////////////////////////////////////////////////////////////// // Vectors //////////////////////////////////////////////////////////////////////////////// type vector (a:Type) : nat -> Type = | VNil : vector a 0 | VCons : hd:a -> #n:nat //implicit argument, you ...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked" ], "interface_file": false, "source_file": "OPLSS2021.Vector.fst" }
[ { "abbrev": false, "full_module": "OPLSS2021", "short_module": null }, { "abbrev": false, "full_module": "OPLSS2021", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasives", "short_module": null }, { "abbrev": false, "full_module": "Prims...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
f: (_: a -> b) -> v: OPLSS2021.Vector.vector a n -> OPLSS2021.Vector.vector b n
Prims.Tot
[ "total" ]
[]
[ "Prims.nat", "OPLSS2021.Vector.vector", "OPLSS2021.Vector.VNil", "OPLSS2021.Vector.VCons", "OPLSS2021.Vector.map" ]
[ "recursion" ]
false
false
false
false
false
let rec map #a #b (f: (a -> b)) #n (v: vector a n) : vector b n =
match v with | VNil -> VNil | VCons hd tl -> VCons (f hd) (map f tl)
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.aff_point_inv_seq
val aff_point_inv_seq : p: Hacl.Impl.P256.Point.aff_point_seq -> Prims.logical
let aff_point_inv_seq (p:aff_point_seq) = let x, y = as_aff_point_nat_seq p in x < S.prime /\ y < S.prime
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 28, "end_line": 34, "start_col": 0, "start_line": 32 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
p: Hacl.Impl.P256.Point.aff_point_seq -> Prims.logical
Prims.Tot
[ "total" ]
[]
[ "Hacl.Impl.P256.Point.aff_point_seq", "Prims.nat", "Prims.l_and", "Prims.b2t", "Prims.op_LessThan", "Spec.P256.PointOps.prime", "Prims.logical", "FStar.Pervasives.Native.tuple2", "Hacl.Impl.P256.Point.as_aff_point_nat_seq" ]
[]
false
false
false
true
true
let aff_point_inv_seq (p: aff_point_seq) =
let x, y = as_aff_point_nat_seq p in x < S.prime /\ y < S.prime
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.aff_point
val aff_point : Type0
let aff_point = lbuffer uint64 8ul
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 34, "end_line": 38, "start_col": 0, "start_line": 38 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
Type0
Prims.Tot
[ "total" ]
[]
[ "Lib.Buffer.lbuffer", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t" ]
[]
false
false
false
true
true
let aff_point =
lbuffer uint64 8ul
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.as_aff_point_nat
val as_aff_point_nat : h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.P256.Point.aff_point -> Prims.GTot (Prims.nat * Prims.nat)
let as_aff_point_nat (h:mem) (p:aff_point) = as_aff_point_nat_seq (as_seq h p)
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 35, "end_line": 42, "start_col": 0, "start_line": 41 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.P256.Point.aff_point -> Prims.GTot (Prims.nat * Prims.nat)
Prims.GTot
[ "sometrivial" ]
[]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.P256.Point.aff_point", "Hacl.Impl.P256.Point.as_aff_point_nat_seq", "Lib.Buffer.as_seq", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "FStar.Pervasives.Native.tuple2", "Prims.nat" ]
[]
false
false
false
false
false
let as_aff_point_nat (h: mem) (p: aff_point) =
as_aff_point_nat_seq (as_seq h p)
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.aff_point_inv
val aff_point_inv : h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.P256.Point.aff_point -> Prims.logical
let aff_point_inv (h:mem) (p:aff_point) = aff_point_inv_seq (as_seq h p)
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 32, "end_line": 46, "start_col": 0, "start_line": 45 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.P256.Point.aff_point -> Prims.logical
Prims.Tot
[ "total" ]
[]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.P256.Point.aff_point", "Hacl.Impl.P256.Point.aff_point_inv_seq", "Lib.Buffer.as_seq", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Prims.logical" ]
[]
false
false
false
true
true
let aff_point_inv (h: mem) (p: aff_point) =
aff_point_inv_seq (as_seq h p)
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.point_inv
val point_inv : h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.P256.Point.point -> Prims.logical
let point_inv (h:mem) (p:point) = point_inv_seq (as_seq h p)
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 28, "end_line": 93, "start_col": 0, "start_line": 92 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.P256.Point.point -> Prims.logical
Prims.Tot
[ "total" ]
[]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.P256.Point.point", "Hacl.Impl.P256.Point.point_inv_seq", "Lib.Buffer.as_seq", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Prims.logical" ]
[]
false
false
false
true
true
let point_inv (h: mem) (p: point) =
point_inv_seq (as_seq h p)
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.point_inv_seq
val point_inv_seq : p: Hacl.Impl.P256.Point.point_seq -> Prims.logical
let point_inv_seq (p:point_seq) = let x, y, z = as_point_nat_seq p in x < S.prime /\ y < S.prime /\ z < S.prime
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 43, "end_line": 81, "start_col": 0, "start_line": 79 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
p: Hacl.Impl.P256.Point.point_seq -> Prims.logical
Prims.Tot
[ "total" ]
[]
[ "Hacl.Impl.P256.Point.point_seq", "Prims.nat", "Prims.l_and", "Prims.b2t", "Prims.op_LessThan", "Spec.P256.PointOps.prime", "Prims.logical", "FStar.Pervasives.Native.tuple3", "Hacl.Impl.P256.Point.as_point_nat_seq" ]
[]
false
false
false
true
true
let point_inv_seq (p: point_seq) =
let x, y, z = as_point_nat_seq p in x < S.prime /\ y < S.prime /\ z < S.prime
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.as_point_nat
val as_point_nat : h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.P256.Point.point -> Prims.GTot ((Prims.nat * Prims.nat) * Prims.nat)
let as_point_nat (h:mem) (p:point) = as_point_nat_seq (as_seq h p)
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 31, "end_line": 89, "start_col": 0, "start_line": 88 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.P256.Point.point -> Prims.GTot ((Prims.nat * Prims.nat) * Prims.nat)
Prims.GTot
[ "sometrivial" ]
[]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.P256.Point.point", "Hacl.Impl.P256.Point.as_point_nat_seq", "Lib.Buffer.as_seq", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "FStar.Pervasives.Native.tuple3", "Prims.nat" ]
[]
false
false
false
false
false
let as_point_nat (h: mem) (p: point) =
as_point_nat_seq (as_seq h p)
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.point
val point : Type0
let point = lbuffer uint64 12ul
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 31, "end_line": 85, "start_col": 0, "start_line": 85 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
Type0
Prims.Tot
[ "total" ]
[]
[ "Lib.Buffer.lbuffer", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t" ]
[]
false
false
false
true
true
let point =
lbuffer uint64 12ul
false
Pulse.C.Types.Union.fsti
Pulse.C.Types.Union.union_t
val union_t (#tf: Type0) (n: string) (#tn: Type0) (#[solve_mk_string_t ()] prf: squash (norm norm_typestring (mk_string_t n == tn))) (fields: field_description_t tf) : Tot Type0
val union_t (#tf: Type0) (n: string) (#tn: Type0) (#[solve_mk_string_t ()] prf: squash (norm norm_typestring (mk_string_t n == tn))) (fields: field_description_t tf) : Tot Type0
let union_t (#tf: Type0) (n: string) (#tn: Type0) (# [solve_mk_string_t ()] prf: squash (norm norm_typestring (mk_string_t n == tn))) (fields: field_description_t tf) : Tot Type0 = union_t0 tn #tf n fields
{ "file_name": "share/steel/examples/pulse/lib/c/Pulse.C.Types.Union.fsti", "git_rev": "f984200f79bdc452374ae994a5ca837496476c41", "git_url": "https://github.com/FStarLang/steel.git", "project_name": "steel" }
{ "end_col": 26, "end_line": 17, "start_col": 0, "start_line": 16 }
module Pulse.C.Types.Union open Pulse.Lib.Pervasives include Pulse.C.Types.Fields open Pulse.C.Typestring [@@noextract_to "krml"] // primitive val define_union0 (tn: Type0) (#tf: Type0) (n: string) (fields: field_description_t tf) : Tot Type0 inline_for_extraction [@@noextract_to "krml"] let define_union (n: string) (...
{ "checked_file": "/", "dependencies": [ "Pulse.Lib.Pervasives.fst.checked", "Pulse.C.Typestring.fsti.checked", "Pulse.C.Types.Fields.fsti.checked", "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Ghost.fsti.checked", "FStar.Classical.fsti.checked" ], "interface_file": f...
[ { "abbrev": false, "full_module": "Pulse.C.Typestring", "short_module": null }, { "abbrev": false, "full_module": "Pulse.C.Types.Fields", "short_module": null }, { "abbrev": false, "full_module": "Pulse.Lib.Pervasives", "short_module": null }, { "abbrev": false, ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
n: Prims.string -> fields: Pulse.C.Types.Fields.field_description_t tf -> Type0
Prims.Tot
[ "total" ]
[]
[ "Prims.string", "Prims.squash", "FStar.Pervasives.norm", "Pulse.C.Typestring.norm_typestring", "Prims.eq2", "Pulse.C.Typestring.mk_string_t", "Pulse.C.Types.Fields.field_description_t", "Pulse.C.Types.Union.union_t0" ]
[]
false
false
false
false
true
let union_t (#tf: Type0) (n: string) (#tn: Type0) (#[solve_mk_string_t ()] prf: squash (norm norm_typestring (mk_string_t n == tn))) (fields: field_description_t tf) : Tot Type0 =
union_t0 tn #tf n fields
false
Pulse.C.Types.Union.fsti
Pulse.C.Types.Union.union
val union (#tf: Type0) (n: string) (#tn: Type0) (#[solve_mk_string_t ()] prf: squash (norm norm_typestring (mk_string_t n == tn))) (fields: field_description_t tf) : Tot (typedef (union_t0 tn n fields))
val union (#tf: Type0) (n: string) (#tn: Type0) (#[solve_mk_string_t ()] prf: squash (norm norm_typestring (mk_string_t n == tn))) (fields: field_description_t tf) : Tot (typedef (union_t0 tn n fields))
let union (#tf: Type0) (n: string) (#tn: Type0) (# [solve_mk_string_t ()] prf: squash (norm norm_typestring (mk_string_t n == tn))) (fields: field_description_t tf) : Tot (typedef (union_t0 tn n fields)) = union0 tn #tf n fields
{ "file_name": "share/steel/examples/pulse/lib/c/Pulse.C.Types.Union.fsti", "git_rev": "f984200f79bdc452374ae994a5ca837496476c41", "git_url": "https://github.com/FStarLang/steel.git", "project_name": "steel" }
{ "end_col": 24, "end_line": 79, "start_col": 0, "start_line": 78 }
module Pulse.C.Types.Union open Pulse.Lib.Pervasives include Pulse.C.Types.Fields open Pulse.C.Typestring [@@noextract_to "krml"] // primitive val define_union0 (tn: Type0) (#tf: Type0) (n: string) (fields: field_description_t tf) : Tot Type0 inline_for_extraction [@@noextract_to "krml"] let define_union (n: string) (...
{ "checked_file": "/", "dependencies": [ "Pulse.Lib.Pervasives.fst.checked", "Pulse.C.Typestring.fsti.checked", "Pulse.C.Types.Fields.fsti.checked", "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Ghost.fsti.checked", "FStar.Classical.fsti.checked" ], "interface_file": f...
[ { "abbrev": false, "full_module": "Pulse.C.Typestring", "short_module": null }, { "abbrev": false, "full_module": "Pulse.C.Types.Fields", "short_module": null }, { "abbrev": false, "full_module": "Pulse.Lib.Pervasives", "short_module": null }, { "abbrev": false, ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
n: Prims.string -> fields: Pulse.C.Types.Fields.field_description_t tf -> Pulse.C.Types.Base.typedef (Pulse.C.Types.Union.union_t0 tn n fields)
Prims.Tot
[ "total" ]
[]
[ "Prims.string", "Prims.squash", "FStar.Pervasives.norm", "Pulse.C.Typestring.norm_typestring", "Prims.eq2", "Pulse.C.Typestring.mk_string_t", "Pulse.C.Types.Fields.field_description_t", "Pulse.C.Types.Union.union0", "Pulse.C.Types.Base.typedef", "Pulse.C.Types.Union.union_t0" ]
[]
false
false
false
false
false
let union (#tf: Type0) (n: string) (#tn: Type0) (#[solve_mk_string_t ()] prf: squash (norm norm_typestring (mk_string_t n == tn))) (fields: field_description_t tf) : Tot (typedef (union_t0 tn n fields)) =
union0 tn #tf n fields
false
Pulse.C.Types.Union.fsti
Pulse.C.Types.Union.define_union
val define_union (n: string) (#tf #tn: Type0) (#[solve_mk_string_t ()] prf: squash (norm norm_typestring (mk_string_t n == tn))) (fields: field_description_t tf) : Tot Type0
val define_union (n: string) (#tf #tn: Type0) (#[solve_mk_string_t ()] prf: squash (norm norm_typestring (mk_string_t n == tn))) (fields: field_description_t tf) : Tot Type0
let define_union (n: string) (#tf: Type0) (#tn: Type0) (#[solve_mk_string_t ()] prf: squash (norm norm_typestring (mk_string_t n == tn))) (fields: field_description_t tf) : Tot Type0 = define_union0 tn #tf n fields
{ "file_name": "share/steel/examples/pulse/lib/c/Pulse.C.Types.Union.fsti", "git_rev": "f984200f79bdc452374ae994a5ca837496476c41", "git_url": "https://github.com/FStarLang/steel.git", "project_name": "steel" }
{ "end_col": 31, "end_line": 10, "start_col": 0, "start_line": 9 }
module Pulse.C.Types.Union open Pulse.Lib.Pervasives include Pulse.C.Types.Fields open Pulse.C.Typestring [@@noextract_to "krml"] // primitive val define_union0 (tn: Type0) (#tf: Type0) (n: string) (fields: field_description_t tf) : Tot Type0
{ "checked_file": "/", "dependencies": [ "Pulse.Lib.Pervasives.fst.checked", "Pulse.C.Typestring.fsti.checked", "Pulse.C.Types.Fields.fsti.checked", "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Ghost.fsti.checked", "FStar.Classical.fsti.checked" ], "interface_file": f...
[ { "abbrev": false, "full_module": "Pulse.C.Typestring", "short_module": null }, { "abbrev": false, "full_module": "Pulse.C.Types.Fields", "short_module": null }, { "abbrev": false, "full_module": "Pulse.Lib.Pervasives", "short_module": null }, { "abbrev": false, ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
n: Prims.string -> fields: Pulse.C.Types.Fields.field_description_t tf -> Type0
Prims.Tot
[ "total" ]
[]
[ "Prims.string", "Prims.squash", "FStar.Pervasives.norm", "Pulse.C.Typestring.norm_typestring", "Prims.eq2", "Pulse.C.Typestring.mk_string_t", "Pulse.C.Types.Fields.field_description_t", "Pulse.C.Types.Union.define_union0" ]
[]
false
false
false
false
true
let define_union (n: string) (#tf #tn: Type0) (#[solve_mk_string_t ()] prf: squash (norm norm_typestring (mk_string_t n == tn))) (fields: field_description_t tf) : Tot Type0 =
define_union0 tn #tf n fields
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.from_mont_point
val from_mont_point (a: tuple3 nat nat nat) : S.proj_point
val from_mont_point (a: tuple3 nat nat nat) : S.proj_point
let from_mont_point (a:tuple3 nat nat nat) : S.proj_point = let x, y, z = a in SM.from_mont x, SM.from_mont y, SM.from_mont z
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 67, "end_line": 20, "start_col": 0, "start_line": 19 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
a: ((Prims.nat * Prims.nat) * Prims.nat) -> Spec.P256.PointOps.proj_point
Prims.Tot
[ "total" ]
[]
[ "FStar.Pervasives.Native.tuple3", "Prims.nat", "FStar.Pervasives.Native.Mktuple3", "Hacl.Spec.P256.Montgomery.from_mont", "Spec.P256.PointOps.proj_point" ]
[]
false
false
false
true
false
let from_mont_point (a: tuple3 nat nat nat) : S.proj_point =
let x, y, z = a in SM.from_mont x, SM.from_mont y, SM.from_mont z
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.as_aff_point_nat_seq
val as_aff_point_nat_seq : p: Hacl.Impl.P256.Point.aff_point_seq -> Prims.nat * Prims.nat
let as_aff_point_nat_seq (p:aff_point_seq) = BD.bn_v (LSeq.sub p 0 4), BD.bn_v (LSeq.sub p 4 4)
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 26, "end_line": 30, "start_col": 0, "start_line": 28 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
p: Hacl.Impl.P256.Point.aff_point_seq -> Prims.nat * Prims.nat
Prims.Tot
[ "total" ]
[]
[ "Hacl.Impl.P256.Point.aff_point_seq", "FStar.Pervasives.Native.Mktuple2", "Prims.nat", "Hacl.Spec.Bignum.Definitions.bn_v", "Lib.IntTypes.U64", "Lib.Sequence.sub", "Lib.IntTypes.uint64", "FStar.Pervasives.Native.tuple2" ]
[]
false
false
false
true
false
let as_aff_point_nat_seq (p: aff_point_seq) =
BD.bn_v (LSeq.sub p 0 4), BD.bn_v (LSeq.sub p 4 4)
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.aff_point_seq
val aff_point_seq : Type0
let aff_point_seq = LSeq.lseq uint64 8
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 38, "end_line": 26, "start_col": 0, "start_line": 26 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
Type0
Prims.Tot
[ "total" ]
[]
[ "Lib.Sequence.lseq", "Lib.IntTypes.uint64" ]
[]
false
false
false
true
true
let aff_point_seq =
LSeq.lseq uint64 8
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.point_seq
val point_seq : Type0
let point_seq = LSeq.lseq uint64 12
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 35, "end_line": 72, "start_col": 0, "start_line": 72 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
Type0
Prims.Tot
[ "total" ]
[]
[ "Lib.Sequence.lseq", "Lib.IntTypes.uint64" ]
[]
false
false
false
true
true
let point_seq =
LSeq.lseq uint64 12
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.as_point_nat_seq
val as_point_nat_seq : p: Hacl.Impl.P256.Point.point_seq -> (Prims.nat * Prims.nat) * Prims.nat
let as_point_nat_seq (p:point_seq) = BD.bn_v (LSeq.sub p 0 4), BD.bn_v (LSeq.sub p 4 4), BD.bn_v (LSeq.sub p 8 4)
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 26, "end_line": 77, "start_col": 0, "start_line": 74 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
p: Hacl.Impl.P256.Point.point_seq -> (Prims.nat * Prims.nat) * Prims.nat
Prims.Tot
[ "total" ]
[]
[ "Hacl.Impl.P256.Point.point_seq", "FStar.Pervasives.Native.Mktuple3", "Prims.nat", "Hacl.Spec.Bignum.Definitions.bn_v", "Lib.IntTypes.U64", "Lib.Sequence.sub", "Lib.IntTypes.uint64", "FStar.Pervasives.Native.tuple3" ]
[]
false
false
false
true
false
let as_point_nat_seq (p: point_seq) =
BD.bn_v (LSeq.sub p 0 4), BD.bn_v (LSeq.sub p 4 4), BD.bn_v (LSeq.sub p 8 4)
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.aff_point_y_as_nat
val aff_point_y_as_nat (h: mem) (p: aff_point) : GTot nat
val aff_point_y_as_nat (h: mem) (p: aff_point) : GTot nat
let aff_point_y_as_nat (h:mem) (p:aff_point) : GTot nat = as_nat h (gsub p 4ul 4ul)
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 27, "end_line": 54, "start_col": 0, "start_line": 53 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.P256.Point.aff_point -> Prims.GTot Prims.nat
Prims.GTot
[ "sometrivial" ]
[]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.P256.Point.aff_point", "Hacl.Impl.P256.Bignum.as_nat", "Lib.Buffer.gsub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Prims.nat" ]
[]
false
false
false
false
false
let aff_point_y_as_nat (h: mem) (p: aff_point) : GTot nat =
as_nat h (gsub p 4ul 4ul)
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.point_x_as_nat
val point_x_as_nat (h: mem) (p: point) : GTot nat
val point_x_as_nat (h: mem) (p: point) : GTot nat
let point_x_as_nat (h:mem) (p:point) : GTot nat = as_nat h (gsub p 0ul 4ul)
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 27, "end_line": 97, "start_col": 0, "start_line": 96 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.P256.Point.point -> Prims.GTot Prims.nat
Prims.GTot
[ "sometrivial" ]
[]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.P256.Point.point", "Hacl.Impl.P256.Bignum.as_nat", "Lib.Buffer.gsub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Prims.nat" ]
[]
false
false
false
false
false
let point_x_as_nat (h: mem) (p: point) : GTot nat =
as_nat h (gsub p 0ul 4ul)
false
FStar.Seq.Base.fst
FStar.Seq.Base.length
val length: #a:Type -> seq a -> Tot nat
val length: #a:Type -> seq a -> Tot nat
let length #_ s = List.length (MkSeq?.l s)
{ "file_name": "ulib/FStar.Seq.Base.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 42, "end_line": 26, "start_col": 0, "start_line": 26 }
(* Copyright 2008-2014 Nikhil Swamy and Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.List.Tot.fst.checked" ], "interface_file": true, "source_file": "FStar.Seq.Base.fst" }
[ { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar....
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
s: FStar.Seq.Base.seq a -> Prims.nat
Prims.Tot
[ "total" ]
[]
[ "FStar.Seq.Base.seq", "FStar.List.Tot.Base.length", "FStar.Seq.Base.__proj__MkSeq__item__l", "Prims.nat" ]
[]
false
false
false
true
false
let length #_ s =
List.length (MkSeq?.l s)
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.aff_point_x_as_nat
val aff_point_x_as_nat (h: mem) (p: aff_point) : GTot nat
val aff_point_x_as_nat (h: mem) (p: aff_point) : GTot nat
let aff_point_x_as_nat (h:mem) (p:aff_point) : GTot nat = as_nat h (gsub p 0ul 4ul)
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 27, "end_line": 50, "start_col": 0, "start_line": 49 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.P256.Point.aff_point -> Prims.GTot Prims.nat
Prims.GTot
[ "sometrivial" ]
[]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.P256.Point.aff_point", "Hacl.Impl.P256.Bignum.as_nat", "Lib.Buffer.gsub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Prims.nat" ]
[]
false
false
false
false
false
let aff_point_x_as_nat (h: mem) (p: aff_point) : GTot nat =
as_nat h (gsub p 0ul 4ul)
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.point_y_as_nat
val point_y_as_nat (h: mem) (e: point) : GTot nat
val point_y_as_nat (h: mem) (e: point) : GTot nat
let point_y_as_nat (h:mem) (e:point) : GTot nat = as_nat h (gsub e 4ul 4ul)
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 27, "end_line": 101, "start_col": 0, "start_line": 100 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
h: FStar.Monotonic.HyperStack.mem -> e: Hacl.Impl.P256.Point.point -> Prims.GTot Prims.nat
Prims.GTot
[ "sometrivial" ]
[]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.P256.Point.point", "Hacl.Impl.P256.Bignum.as_nat", "Lib.Buffer.gsub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Prims.nat" ]
[]
false
false
false
false
false
let point_y_as_nat (h: mem) (e: point) : GTot nat =
as_nat h (gsub e 4ul 4ul)
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.aff_getx
val aff_getx (p: aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 4ul /\ h0 == h1)
val aff_getx (p: aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 4ul /\ h0 == h1)
let aff_getx (p:aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 4ul /\ h0 == h1) = sub p 0ul 4ul
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 17, "end_line": 60, "start_col": 0, "start_line": 57 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
p: Hacl.Impl.P256.Point.aff_point -> FStar.HyperStack.ST.Stack Hacl.Impl.P256.Bignum.felem
FStar.HyperStack.ST.Stack
[]
[]
[ "Hacl.Impl.P256.Point.aff_point", "Lib.Buffer.sub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Lib.Buffer.lbuffer_t", "Hacl.Impl.P256.Bignum.felem", "FStar.Monotonic.HyperStack.mem", "Lib.Buffer.live", "Prims.l_and", "Prims.eq2", "Lib.Buffer.buffer_t", "Prims.l_or"...
[]
false
true
false
false
false
let aff_getx (p: aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 4ul /\ h0 == h1) =
sub p 0ul 4ul
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.point_z_as_nat
val point_z_as_nat (h: mem) (e: point) : GTot nat
val point_z_as_nat (h: mem) (e: point) : GTot nat
let point_z_as_nat (h:mem) (e:point) : GTot nat = as_nat h (gsub e 8ul 4ul)
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 27, "end_line": 105, "start_col": 0, "start_line": 104 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
h: FStar.Monotonic.HyperStack.mem -> e: Hacl.Impl.P256.Point.point -> Prims.GTot Prims.nat
Prims.GTot
[ "sometrivial" ]
[]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.P256.Point.point", "Hacl.Impl.P256.Bignum.as_nat", "Lib.Buffer.gsub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Prims.nat" ]
[]
false
false
false
false
false
let point_z_as_nat (h: mem) (e: point) : GTot nat =
as_nat h (gsub e 8ul 4ul)
false
FStar.Seq.Base.fst
FStar.Seq.Base._cons
val _cons (#a: Type) (x: a) (s: seq a) : Tot (seq a)
val _cons (#a: Type) (x: a) (s: seq a) : Tot (seq a)
let _cons (#a:Type) (x:a) (s:seq a) : Tot (seq a) = MkSeq (x::(MkSeq?.l s))
{ "file_name": "ulib/FStar.Seq.Base.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 75, "end_line": 36, "start_col": 0, "start_line": 36 }
(* Copyright 2008-2014 Nikhil Swamy and Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.List.Tot.fst.checked" ], "interface_file": true, "source_file": "FStar.Seq.Base.fst" }
[ { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
x: a -> s: FStar.Seq.Base.seq a -> FStar.Seq.Base.seq a
Prims.Tot
[ "total" ]
[]
[ "FStar.Seq.Base.seq", "FStar.Seq.Base.MkSeq", "Prims.Cons", "FStar.Seq.Base.__proj__MkSeq__item__l" ]
[]
false
false
false
true
false
let _cons (#a: Type) (x: a) (s: seq a) : Tot (seq a) =
MkSeq (x :: (MkSeq?.l s))
false
FStar.Seq.Base.fst
FStar.Seq.Base.seq_to_list
val seq_to_list (#a:Type) (s:seq a) : Tot (l:list a{List.length l == length s})
val seq_to_list (#a:Type) (s:seq a) : Tot (l:list a{List.length l == length s})
let seq_to_list #_ s = match s with | MkSeq l -> l
{ "file_name": "ulib/FStar.Seq.Base.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 16, "end_line": 30, "start_col": 0, "start_line": 28 }
(* Copyright 2008-2014 Nikhil Swamy and Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.List.Tot.fst.checked" ], "interface_file": true, "source_file": "FStar.Seq.Base.fst" }
[ { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar....
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
s: FStar.Seq.Base.seq a -> l: Prims.list a {FStar.List.Tot.Base.length l == FStar.Seq.Base.length s}
Prims.Tot
[ "total" ]
[]
[ "FStar.Seq.Base.seq", "Prims.list", "Prims.eq2", "Prims.nat", "FStar.List.Tot.Base.length", "FStar.Seq.Base.length" ]
[]
false
false
false
false
false
let seq_to_list #_ s =
match s with | MkSeq l -> l
false
FStar.Seq.Base.fst
FStar.Seq.Base.seq_of_list
val seq_of_list (#a:Type) (l:list a) : Tot (s:seq a{List.length l == length s})
val seq_of_list (#a:Type) (l:list a) : Tot (s:seq a{List.length l == length s})
let seq_of_list #_ l = MkSeq l
{ "file_name": "ulib/FStar.Seq.Base.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 30, "end_line": 32, "start_col": 0, "start_line": 32 }
(* Copyright 2008-2014 Nikhil Swamy and Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.List.Tot.fst.checked" ], "interface_file": true, "source_file": "FStar.Seq.Base.fst" }
[ { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar....
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
l: Prims.list a -> s: FStar.Seq.Base.seq a {FStar.List.Tot.Base.length l == FStar.Seq.Base.length s}
Prims.Tot
[ "total" ]
[]
[ "Prims.list", "FStar.Seq.Base.MkSeq", "FStar.Seq.Base.seq", "Prims.eq2", "Prims.nat", "FStar.List.Tot.Base.length", "FStar.Seq.Base.length" ]
[]
false
false
false
false
false
let seq_of_list #_ l =
MkSeq l
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.aff_gety
val aff_gety (p: aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 4ul 4ul /\ h0 == h1)
val aff_gety (p: aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 4ul 4ul /\ h0 == h1)
let aff_gety (p:aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 4ul 4ul /\ h0 == h1) = sub p 4ul 4ul
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 17, "end_line": 66, "start_col": 0, "start_line": 63 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
p: Hacl.Impl.P256.Point.aff_point -> FStar.HyperStack.ST.Stack Hacl.Impl.P256.Bignum.felem
FStar.HyperStack.ST.Stack
[]
[]
[ "Hacl.Impl.P256.Point.aff_point", "Lib.Buffer.sub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Lib.Buffer.lbuffer_t", "Hacl.Impl.P256.Bignum.felem", "FStar.Monotonic.HyperStack.mem", "Lib.Buffer.live", "Prims.l_and", "Prims.eq2", "Lib.Buffer.buffer_t", "Prims.l_or"...
[]
false
true
false
false
false
let aff_gety (p: aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 4ul 4ul /\ h0 == h1) =
sub p 4ul 4ul
false
FStar.Seq.Base.fst
FStar.Seq.Base.index
val index: #a:Type -> s:seq a -> i:nat{i < length s} -> Tot a
val index: #a:Type -> s:seq a -> i:nat{i < length s} -> Tot a
let index #_ s i = List.index (MkSeq?.l s) i
{ "file_name": "ulib/FStar.Seq.Base.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 44, "end_line": 34, "start_col": 0, "start_line": 34 }
(* Copyright 2008-2014 Nikhil Swamy and Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.List.Tot.fst.checked" ], "interface_file": true, "source_file": "FStar.Seq.Base.fst" }
[ { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar....
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
s: FStar.Seq.Base.seq a -> i: Prims.nat{i < FStar.Seq.Base.length s} -> a
Prims.Tot
[ "total" ]
[]
[ "FStar.Seq.Base.seq", "Prims.nat", "Prims.b2t", "Prims.op_LessThan", "FStar.Seq.Base.length", "FStar.List.Tot.Base.index", "FStar.Seq.Base.__proj__MkSeq__item__l" ]
[]
false
false
false
false
false
let index #_ s i =
List.index (MkSeq?.l s) i
false
Pulse.C.Types.Union.fsti
Pulse.C.Types.Union.full_union_set_field_intro
val full_union_set_field_intro (#tn #tf: Type0) (#n: string) (#fields: field_description_t tf) (field: field_t fields) (v: fields.fd_type field) : Lemma (requires (full (fields.fd_typedef field) v)) (ensures (full (union0 tn n fields) (union_set_field tn n fields field v)))
val full_union_set_field_intro (#tn #tf: Type0) (#n: string) (#fields: field_description_t tf) (field: field_t fields) (v: fields.fd_type field) : Lemma (requires (full (fields.fd_typedef field) v)) (ensures (full (union0 tn n fields) (union_set_field tn n fields field v)))
let full_union_set_field_intro (#tn: Type0) (#tf: Type0) (#n: string) (#fields: field_description_t tf) (field: field_t fields) (v: fields.fd_type field) : Lemma (requires (full (fields.fd_typedef field) v)) (ensures ( full (union0 tn n fields) (union_set_field tn n fields field v) )) = full_union...
{ "file_name": "share/steel/examples/pulse/lib/c/Pulse.C.Types.Union.fsti", "git_rev": "f984200f79bdc452374ae994a5ca837496476c41", "git_url": "https://github.com/FStarLang/steel.git", "project_name": "steel" }
{ "end_col": 56, "end_line": 191, "start_col": 0, "start_line": 179 }
module Pulse.C.Types.Union open Pulse.Lib.Pervasives include Pulse.C.Types.Fields open Pulse.C.Typestring [@@noextract_to "krml"] // primitive val define_union0 (tn: Type0) (#tf: Type0) (n: string) (fields: field_description_t tf) : Tot Type0 inline_for_extraction [@@noextract_to "krml"] let define_union (n: string) (...
{ "checked_file": "/", "dependencies": [ "Pulse.Lib.Pervasives.fst.checked", "Pulse.C.Typestring.fsti.checked", "Pulse.C.Types.Fields.fsti.checked", "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Ghost.fsti.checked", "FStar.Classical.fsti.checked" ], "interface_file": f...
[ { "abbrev": false, "full_module": "Pulse.C.Typestring", "short_module": null }, { "abbrev": false, "full_module": "Pulse.C.Types.Fields", "short_module": null }, { "abbrev": false, "full_module": "Pulse.Lib.Pervasives", "short_module": null }, { "abbrev": false, ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
field: Pulse.C.Types.Fields.field_t fields -> v: Mkfield_description_t?.fd_type fields field -> FStar.Pervasives.Lemma (requires Pulse.C.Types.Base.full (Mkfield_description_t?.fd_typedef fields field) v) (ensures Pulse.C.Types.Base.full (Pulse.C.Types.Union.union0 tn n fields) (Pulse.C....
FStar.Pervasives.Lemma
[ "lemma" ]
[]
[ "Prims.string", "Pulse.C.Types.Fields.field_description_t", "Pulse.C.Types.Fields.field_t", "Pulse.C.Types.Fields.__proj__Mkfield_description_t__item__fd_type", "Pulse.C.Types.Union.full_union", "Pulse.C.Types.Union.union_set_field", "Prims.unit", "Pulse.C.Types.Base.full", "Pulse.C.Types.Fields.__p...
[]
true
false
true
false
false
let full_union_set_field_intro (#tn #tf: Type0) (#n: string) (#fields: field_description_t tf) (field: field_t fields) (v: fields.fd_type field) : Lemma (requires (full (fields.fd_typedef field) v)) (ensures (full (union0 tn n fields) (union_set_field tn n fields field v))) =
full_union (union_set_field tn n fields field v) field
false
FStar.Seq.Base.fst
FStar.Seq.Base.hd
val hd (#a: Type) (s: seq a {length s > 0}) : Tot a
val hd (#a: Type) (s: seq a {length s > 0}) : Tot a
let hd (#a:Type) (s:seq a{length s > 0}) : Tot a = List.hd (MkSeq?.l s)
{ "file_name": "ulib/FStar.Seq.Base.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 71, "end_line": 38, "start_col": 0, "start_line": 38 }
(* Copyright 2008-2014 Nikhil Swamy and Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.List.Tot.fst.checked" ], "interface_file": true, "source_file": "FStar.Seq.Base.fst" }
[ { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
s: FStar.Seq.Base.seq a {FStar.Seq.Base.length s > 0} -> a
Prims.Tot
[ "total" ]
[]
[ "FStar.Seq.Base.seq", "Prims.b2t", "Prims.op_GreaterThan", "FStar.Seq.Base.length", "FStar.List.Tot.Base.hd", "FStar.Seq.Base.__proj__MkSeq__item__l" ]
[]
false
false
false
false
false
let hd (#a: Type) (s: seq a {length s > 0}) : Tot a =
List.hd (MkSeq?.l s)
false
FStar.Seq.Base.fst
FStar.Seq.Base.init_aux
val init_aux (#a:Type) (len:nat) (k:nat{k < len}) (contents:(i:nat { i < len } -> Tot a)) :Tot (seq a)
val init_aux (#a:Type) (len:nat) (k:nat{k < len}) (contents:(i:nat { i < len } -> Tot a)) :Tot (seq a)
let init_aux = init_aux'
{ "file_name": "ulib/FStar.Seq.Base.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 24, "end_line": 51, "start_col": 0, "start_line": 51 }
(* Copyright 2008-2014 Nikhil Swamy and Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.List.Tot.fst.checked" ], "interface_file": true, "source_file": "FStar.Seq.Base.fst" }
[ { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar....
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
len: Prims.nat -> k: Prims.nat{k < len} -> contents: (i: Prims.nat{i < len} -> a) -> FStar.Seq.Base.seq a
Prims.Tot
[ "total" ]
[]
[ "FStar.Seq.Base.init_aux'" ]
[]
false
false
false
false
false
let init_aux =
init_aux'
false
FStar.Seq.Base.fst
FStar.Seq.Base.tl
val tl (#a: Type) (s: seq a {length s > 0}) : Tot (seq a)
val tl (#a: Type) (s: seq a {length s > 0}) : Tot (seq a)
let tl (#a:Type) (s:seq a{length s > 0}) : Tot (seq a) = MkSeq (List.tl (MkSeq?.l s))
{ "file_name": "ulib/FStar.Seq.Base.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 85, "end_line": 40, "start_col": 0, "start_line": 40 }
(* Copyright 2008-2014 Nikhil Swamy and Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.List.Tot.fst.checked" ], "interface_file": true, "source_file": "FStar.Seq.Base.fst" }
[ { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
s: FStar.Seq.Base.seq a {FStar.Seq.Base.length s > 0} -> FStar.Seq.Base.seq a
Prims.Tot
[ "total" ]
[]
[ "FStar.Seq.Base.seq", "Prims.b2t", "Prims.op_GreaterThan", "FStar.Seq.Base.length", "FStar.Seq.Base.MkSeq", "FStar.List.Tot.Base.tl", "FStar.Seq.Base.__proj__MkSeq__item__l" ]
[]
false
false
false
false
false
let tl (#a: Type) (s: seq a {length s > 0}) : Tot (seq a) =
MkSeq (List.tl (MkSeq?.l s))
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.gety
val gety (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 4ul 4ul /\ h0 == h1)
val gety (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 4ul 4ul /\ h0 == h1)
let gety (p:point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 4ul 4ul /\ h0 == h1) = sub p 4ul 4ul
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 17, "end_line": 118, "start_col": 0, "start_line": 115 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
p: Hacl.Impl.P256.Point.point -> FStar.HyperStack.ST.Stack Hacl.Impl.P256.Bignum.felem
FStar.HyperStack.ST.Stack
[]
[]
[ "Hacl.Impl.P256.Point.point", "Lib.Buffer.sub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Lib.Buffer.lbuffer_t", "Hacl.Impl.P256.Bignum.felem", "FStar.Monotonic.HyperStack.mem", "Lib.Buffer.live", "Prims.l_and", "Prims.eq2", "Lib.Buffer.buffer_t", "Prims.l_or", ...
[]
false
true
false
false
false
let gety (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 4ul 4ul /\ h0 == h1) =
sub p 4ul 4ul
false
Pulse.C.Types.Union.fsti
Pulse.C.Types.Union.full_union_set_field_elim
val full_union_set_field_elim (#tn #tf: Type0) (#n: string) (#fields: field_description_t tf) (field: field_t fields) (v: fields.fd_type field) : Lemma (requires (full (union0 tn n fields) (union_set_field tn n fields field v))) (ensures (full (fields.fd_typedef field) v))
val full_union_set_field_elim (#tn #tf: Type0) (#n: string) (#fields: field_description_t tf) (field: field_t fields) (v: fields.fd_type field) : Lemma (requires (full (union0 tn n fields) (union_set_field tn n fields field v))) (ensures (full (fields.fd_typedef field) v))
let full_union_set_field_elim (#tn: Type0) (#tf: Type0) (#n: string) (#fields: field_description_t tf) (field: field_t fields) (v: fields.fd_type field) : Lemma (requires ( full (union0 tn n fields) (union_set_field tn n fields field v) )) (ensures ( full (fields.fd_typedef field) v )) = ful...
{ "file_name": "share/steel/examples/pulse/lib/c/Pulse.C.Types.Union.fsti", "git_rev": "f984200f79bdc452374ae994a5ca837496476c41", "git_url": "https://github.com/FStarLang/steel.git", "project_name": "steel" }
{ "end_col": 56, "end_line": 207, "start_col": 0, "start_line": 193 }
module Pulse.C.Types.Union open Pulse.Lib.Pervasives include Pulse.C.Types.Fields open Pulse.C.Typestring [@@noextract_to "krml"] // primitive val define_union0 (tn: Type0) (#tf: Type0) (n: string) (fields: field_description_t tf) : Tot Type0 inline_for_extraction [@@noextract_to "krml"] let define_union (n: string) (...
{ "checked_file": "/", "dependencies": [ "Pulse.Lib.Pervasives.fst.checked", "Pulse.C.Typestring.fsti.checked", "Pulse.C.Types.Fields.fsti.checked", "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Ghost.fsti.checked", "FStar.Classical.fsti.checked" ], "interface_file": f...
[ { "abbrev": false, "full_module": "Pulse.C.Typestring", "short_module": null }, { "abbrev": false, "full_module": "Pulse.C.Types.Fields", "short_module": null }, { "abbrev": false, "full_module": "Pulse.Lib.Pervasives", "short_module": null }, { "abbrev": false, ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
field: Pulse.C.Types.Fields.field_t fields -> v: Mkfield_description_t?.fd_type fields field -> FStar.Pervasives.Lemma (requires Pulse.C.Types.Base.full (Pulse.C.Types.Union.union0 tn n fields) (Pulse.C.Types.Union.union_set_field tn n fields field v)) (ensures Pulse.C.Types.Base.full (M...
FStar.Pervasives.Lemma
[ "lemma" ]
[]
[ "Prims.string", "Pulse.C.Types.Fields.field_description_t", "Pulse.C.Types.Fields.field_t", "Pulse.C.Types.Fields.__proj__Mkfield_description_t__item__fd_type", "Pulse.C.Types.Union.full_union", "Pulse.C.Types.Union.union_set_field", "Prims.unit", "Pulse.C.Types.Base.full", "Pulse.C.Types.Union.unio...
[]
true
false
true
false
false
let full_union_set_field_elim (#tn #tf: Type0) (#n: string) (#fields: field_description_t tf) (field: field_t fields) (v: fields.fd_type field) : Lemma (requires (full (union0 tn n fields) (union_set_field tn n fields field v))) (ensures (full (fields.fd_typedef field) v)) =
full_union (union_set_field tn n fields field v) field
false
FStar.Seq.Base.fst
FStar.Seq.Base.init_aux_ghost
val init_aux_ghost (#a:Type) (len:nat) (k:nat{k < len}) (contents:(i:nat { i < len } -> GTot a)) : GTot (seq a)
val init_aux_ghost (#a:Type) (len:nat) (k:nat{k < len}) (contents:(i:nat { i < len } -> GTot a)) : GTot (seq a)
let init_aux_ghost = init_aux_ghost'
{ "file_name": "ulib/FStar.Seq.Base.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 36, "end_line": 62, "start_col": 0, "start_line": 62 }
(* Copyright 2008-2014 Nikhil Swamy and Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.List.Tot.fst.checked" ], "interface_file": true, "source_file": "FStar.Seq.Base.fst" }
[ { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar....
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
len: Prims.nat -> k: Prims.nat{k < len} -> contents: (i: Prims.nat{i < len} -> Prims.GTot a) -> Prims.GTot (FStar.Seq.Base.seq a)
Prims.GTot
[ "sometrivial" ]
[]
[ "FStar.Seq.Base.init_aux_ghost'" ]
[]
false
false
false
false
false
let init_aux_ghost =
init_aux_ghost'
false
FStar.Seq.Base.fst
FStar.Seq.Base.create
val create: #a:Type -> nat -> a -> Tot (seq a)
val create: #a:Type -> nat -> a -> Tot (seq a)
let rec create #_ len v = if len = 0 then MkSeq [] else _cons v (create (len - 1) v)
{ "file_name": "ulib/FStar.Seq.Base.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 84, "end_line": 42, "start_col": 0, "start_line": 42 }
(* Copyright 2008-2014 Nikhil Swamy and Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.List.Tot.fst.checked" ], "interface_file": true, "source_file": "FStar.Seq.Base.fst" }
[ { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar....
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
len: Prims.nat -> v: a -> FStar.Seq.Base.seq a
Prims.Tot
[ "total" ]
[]
[ "Prims.nat", "Prims.op_Equality", "Prims.int", "FStar.Seq.Base.MkSeq", "Prims.Nil", "Prims.bool", "FStar.Seq.Base._cons", "FStar.Seq.Base.create", "Prims.op_Subtraction", "FStar.Seq.Base.seq" ]
[ "recursion" ]
false
false
false
true
false
let rec create #_ len v =
if len = 0 then MkSeq [] else _cons v (create (len - 1) v)
false
FStar.Seq.Base.fst
FStar.Seq.Base.init_aux'
val init_aux' (#a: Type) (len: nat) (k: nat{k < len}) (contents: (i: nat{i < len} -> Tot a)) : Tot (seq a) (decreases (len - k))
val init_aux' (#a: Type) (len: nat) (k: nat{k < len}) (contents: (i: nat{i < len} -> Tot a)) : Tot (seq a) (decreases (len - k))
let rec init_aux' (#a:Type) (len:nat) (k:nat{k < len}) (contents: (i:nat{i < len} -> Tot a)) : Tot (seq a) (decreases (len - k)) = if k + 1 = len then MkSeq [contents k] else _cons (contents k) (init_aux' len (k+1) contents)
{ "file_name": "ulib/FStar.Seq.Base.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 58, "end_line": 49, "start_col": 8, "start_line": 44 }
(* Copyright 2008-2014 Nikhil Swamy and Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.List.Tot.fst.checked" ], "interface_file": true, "source_file": "FStar.Seq.Base.fst" }
[ { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
len: Prims.nat -> k: Prims.nat{k < len} -> contents: (i: Prims.nat{i < len} -> a) -> Prims.Tot (FStar.Seq.Base.seq a)
Prims.Tot
[ "total", "" ]
[]
[ "Prims.nat", "Prims.b2t", "Prims.op_LessThan", "Prims.op_Equality", "Prims.int", "Prims.op_Addition", "FStar.Seq.Base.MkSeq", "Prims.Cons", "Prims.Nil", "Prims.bool", "FStar.Seq.Base._cons", "FStar.Seq.Base.init_aux'", "FStar.Seq.Base.seq" ]
[ "recursion" ]
false
false
false
false
false
let rec init_aux' (#a: Type) (len: nat) (k: nat{k < len}) (contents: (i: nat{i < len} -> Tot a)) : Tot (seq a) (decreases (len - k)) =
if k + 1 = len then MkSeq [contents k] else _cons (contents k) (init_aux' len (k + 1) contents)
false
Pulse.C.Types.Union.fsti
Pulse.C.Types.Union.full_union_set_field
val full_union_set_field (#tn #tf: Type0) (#n: string) (#fields: field_description_t tf) (field: field_t fields) (v: fields.fd_type field) : Lemma (requires True) (ensures (full (union0 tn n fields) (union_set_field tn n fields field v) <==> full (fields.fd_type...
val full_union_set_field (#tn #tf: Type0) (#n: string) (#fields: field_description_t tf) (field: field_t fields) (v: fields.fd_type field) : Lemma (requires True) (ensures (full (union0 tn n fields) (union_set_field tn n fields field v) <==> full (fields.fd_type...
let full_union_set_field (#tn: Type0) (#tf: Type0) (#n: string) (#fields: field_description_t tf) (field: field_t fields) (v: fields.fd_type field) : Lemma (requires True) (ensures ( full (union0 tn n fields) (union_set_field tn n fields field v) <==> full (fields.fd_typedef field) v )) [SMTPat ...
{ "file_name": "share/steel/examples/pulse/lib/c/Pulse.C.Types.Union.fsti", "git_rev": "f984200f79bdc452374ae994a5ca837496476c41", "git_url": "https://github.com/FStarLang/steel.git", "project_name": "steel" }
{ "end_col": 80, "end_line": 223, "start_col": 0, "start_line": 209 }
module Pulse.C.Types.Union open Pulse.Lib.Pervasives include Pulse.C.Types.Fields open Pulse.C.Typestring [@@noextract_to "krml"] // primitive val define_union0 (tn: Type0) (#tf: Type0) (n: string) (fields: field_description_t tf) : Tot Type0 inline_for_extraction [@@noextract_to "krml"] let define_union (n: string) (...
{ "checked_file": "/", "dependencies": [ "Pulse.Lib.Pervasives.fst.checked", "Pulse.C.Typestring.fsti.checked", "Pulse.C.Types.Fields.fsti.checked", "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Ghost.fsti.checked", "FStar.Classical.fsti.checked" ], "interface_file": f...
[ { "abbrev": false, "full_module": "Pulse.C.Typestring", "short_module": null }, { "abbrev": false, "full_module": "Pulse.C.Types.Fields", "short_module": null }, { "abbrev": false, "full_module": "Pulse.Lib.Pervasives", "short_module": null }, { "abbrev": false, ...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
field: Pulse.C.Types.Fields.field_t fields -> v: Mkfield_description_t?.fd_type fields field -> FStar.Pervasives.Lemma (ensures Pulse.C.Types.Base.full (Pulse.C.Types.Union.union0 tn n fields) (Pulse.C.Types.Union.union_set_field tn n fields field v) <==> Pulse.C.Types.Base.full (Mkfie...
FStar.Pervasives.Lemma
[ "lemma" ]
[]
[ "Prims.string", "Pulse.C.Types.Fields.field_description_t", "Pulse.C.Types.Fields.field_t", "Pulse.C.Types.Fields.__proj__Mkfield_description_t__item__fd_type", "FStar.Classical.move_requires", "Pulse.C.Types.Base.full", "Pulse.C.Types.Union.union_t0", "Pulse.C.Types.Union.union0", "Pulse.C.Types.Un...
[]
false
false
true
false
false
let full_union_set_field (#tn #tf: Type0) (#n: string) (#fields: field_description_t tf) (field: field_t fields) (v: fields.fd_type field) : Lemma (requires True) (ensures (full (union0 tn n fields) (union_set_field tn n fields field v) <==> full (fields.fd_type...
Classical.move_requires (full_union_set_field_intro #tn #tf #n #fields field) v; Classical.move_requires (full_union_set_field_elim #tn #tf #n #fields field) v
false
FStar.Seq.Base.fst
FStar.Seq.Base.upd
val upd: #a:Type -> s:seq a -> n:nat{n < length s} -> a -> Tot (seq a)
val upd: #a:Type -> s:seq a -> n:nat{n < length s} -> a -> Tot (seq a)
let upd = upd'
{ "file_name": "ulib/FStar.Seq.Base.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 14, "end_line": 75, "start_col": 0, "start_line": 75 }
(* Copyright 2008-2014 Nikhil Swamy and Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.List.Tot.fst.checked" ], "interface_file": true, "source_file": "FStar.Seq.Base.fst" }
[ { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar....
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
s: FStar.Seq.Base.seq a -> n: Prims.nat{n < FStar.Seq.Base.length s} -> _: a -> FStar.Seq.Base.seq a
Prims.Tot
[ "total" ]
[]
[ "FStar.Seq.Base.upd'" ]
[]
false
false
false
false
false
let upd =
upd'
false
FStar.Seq.Base.fst
FStar.Seq.Base.append
val append: #a:Type -> seq a -> seq a -> Tot (seq a)
val append: #a:Type -> seq a -> seq a -> Tot (seq a)
let append #_ s1 s2 = MkSeq (List.append (MkSeq?.l s1) (MkSeq?.l s2))
{ "file_name": "ulib/FStar.Seq.Base.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 69, "end_line": 77, "start_col": 0, "start_line": 77 }
(* Copyright 2008-2014 Nikhil Swamy and Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.List.Tot.fst.checked" ], "interface_file": true, "source_file": "FStar.Seq.Base.fst" }
[ { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar....
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
s1: FStar.Seq.Base.seq a -> s2: FStar.Seq.Base.seq a -> FStar.Seq.Base.seq a
Prims.Tot
[ "total" ]
[]
[ "FStar.Seq.Base.seq", "FStar.Seq.Base.MkSeq", "FStar.List.Tot.Base.append", "FStar.Seq.Base.__proj__MkSeq__item__l" ]
[]
false
false
false
true
false
let append #_ s1 s2 =
MkSeq (List.append (MkSeq?.l s1) (MkSeq?.l s2))
false
FStar.Seq.Base.fst
FStar.Seq.Base.slice
val slice: #a:Type -> s:seq a -> i:nat -> j:nat{i <= j && j <= length s} -> Tot (seq a)
val slice: #a:Type -> s:seq a -> i:nat -> j:nat{i <= j && j <= length s} -> Tot (seq a)
let slice = slice'
{ "file_name": "ulib/FStar.Seq.Base.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 18, "end_line": 86, "start_col": 0, "start_line": 86 }
(* Copyright 2008-2014 Nikhil Swamy and Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.List.Tot.fst.checked" ], "interface_file": true, "source_file": "FStar.Seq.Base.fst" }
[ { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar....
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
s: FStar.Seq.Base.seq a -> i: Prims.nat -> j: Prims.nat{i <= j && j <= FStar.Seq.Base.length s} -> FStar.Seq.Base.seq a
Prims.Tot
[ "total" ]
[]
[ "FStar.Seq.Base.slice'" ]
[]
false
false
false
false
false
let slice =
slice'
false
Hacl.Impl.P256.Point.fsti
Hacl.Impl.P256.Point.getx
val getx (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 4ul /\ h0 == h1)
val getx (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 4ul /\ h0 == h1)
let getx (p:point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 4ul /\ h0 == h1) = sub p 0ul 4ul
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.Point.fsti", "git_rev": "eb1badfa34c70b0bbe0fe24fe0f49fb1295c7872", "git_url": "https://github.com/project-everest/hacl-star.git", "project_name": "hacl-star" }
{ "end_col": 17, "end_line": 112, "start_col": 0, "start_line": 109 }
module Hacl.Impl.P256.Point open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum module S = Spec.P256 module SM = Hacl.Spec.P256.Montgomery module BD = Hacl.Spec.Bignum.Definitions module LSeq = Lib.Sequence #set-options "--z3rlimit 30 --fuel 0...
{ "checked_file": "/", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.P256.Montgomery.fsti.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", "Hacl.Impl.P256.Bignum.fst...
[ { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Hacl.Spec.P256.Montgomery", "short_module": "SM" }, { "abbrev": tr...
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
p: Hacl.Impl.P256.Point.point -> FStar.HyperStack.ST.Stack Hacl.Impl.P256.Bignum.felem
FStar.HyperStack.ST.Stack
[]
[]
[ "Hacl.Impl.P256.Point.point", "Lib.Buffer.sub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Lib.Buffer.lbuffer_t", "Hacl.Impl.P256.Bignum.felem", "FStar.Monotonic.HyperStack.mem", "Lib.Buffer.live", "Prims.l_and", "Prims.eq2", "Lib.Buffer.buffer_t", "Prims.l_or", ...
[]
false
true
false
false
false
let getx (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 4ul /\ h0 == h1) =
sub p 0ul 4ul
false
FStar.Seq.Base.fst
FStar.Seq.Base.init
val init: #a:Type -> len:nat -> contents: (i:nat { i < len } -> Tot a) -> Tot (seq a)
val init: #a:Type -> len:nat -> contents: (i:nat { i < len } -> Tot a) -> Tot (seq a)
let init #_ len contents = if len = 0 then MkSeq [] else init_aux len 0 contents
{ "file_name": "ulib/FStar.Seq.Base.fst", "git_rev": "10183ea187da8e8c426b799df6c825e24c0767d3", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
{ "end_col": 80, "end_line": 53, "start_col": 0, "start_line": 53 }
(* Copyright 2008-2014 Nikhil Swamy and Microsoft Research Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "checked_file": "/", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.List.Tot.fst.checked" ], "interface_file": true, "source_file": "FStar.Seq.Base.fst" }
[ { "abbrev": true, "full_module": "FStar.List.Tot", "short_module": "List" }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar.Seq", "short_module": null }, { "abbrev": false, "full_module": "FStar....
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
false
len: Prims.nat -> contents: (i: Prims.nat{i < len} -> a) -> FStar.Seq.Base.seq a
Prims.Tot
[ "total" ]
[]
[ "Prims.nat", "Prims.b2t", "Prims.op_LessThan", "Prims.op_Equality", "Prims.int", "FStar.Seq.Base.MkSeq", "Prims.Nil", "Prims.bool", "FStar.Seq.Base.init_aux", "FStar.Seq.Base.seq" ]
[]
false
false
false
false
false
let init #_ len contents =
if len = 0 then MkSeq [] else init_aux len 0 contents
false