effect
stringclasses
48 values
original_source_type
stringlengths
0
23k
opens_and_abbrevs
listlengths
2
92
isa_cross_project_example
bool
1 class
source_definition
stringlengths
9
57.9k
partial_definition
stringlengths
7
23.3k
is_div
bool
2 classes
is_type
null
is_proof
bool
2 classes
completed_definiton
stringlengths
1
250k
dependencies
dict
effect_flags
listlengths
0
2
ideal_premises
listlengths
0
236
mutual_with
listlengths
0
11
file_context
stringlengths
0
407k
interleaved
bool
1 class
is_simply_typed
bool
2 classes
file_name
stringlengths
5
48
vconfig
dict
is_simple_lemma
null
source_type
stringlengths
10
23k
proof_features
listlengths
0
1
name
stringlengths
8
95
source
dict
verbose_type
stringlengths
1
7.42k
source_range
dict
Prims.Tot
[ { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "SD" }, { "abbrev": true, "full_module": "Hacl.Bignum.Montgomery", "short_module": "BM" }, { "abbrev": true, "full_module": "Hacl.Bignum.Exponentiation", "short_module": "BE" }, { "ab...
false
let bn_mod_inv_prime_precomp_st (t:limb_t) (len:BN.meta_len t) = n:lbignum t len -> mu:limb t -> r2:lbignum t len -> a:lbignum t len -> res:lbignum t len -> Stack unit (requires fun h -> live h n /\ live h r2 /\ live h a /\ live h res /\ disjoint res n /\ disjoint res a /\ disjoint n a /\ di...
let bn_mod_inv_prime_precomp_st (t: limb_t) (len: BN.meta_len t) =
false
null
false
n: lbignum t len -> mu: limb t -> r2: lbignum t len -> a: lbignum t len -> res: lbignum t len -> Stack unit (requires fun h -> live h n /\ live h r2 /\ live h a /\ live h res /\ disjoint res n /\ disjoint res a /\ disjoint n a /\ disjoint res r2 /\ disjoint a r2 /\ disjoint n r2 /\ ...
{ "checked_file": "Hacl.Bignum.ModInv.fst.checked", "dependencies": [ "prims.fst.checked", "LowStar.Ignore.fsti.checked", "Lib.NatMod.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.Bignum.ModInv.fst.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", ...
[ "total" ]
[ "Hacl.Bignum.Definitions.limb_t", "Hacl.Bignum.meta_len", "Hacl.Bignum.Definitions.lbignum", "Hacl.Bignum.Definitions.limb", "Prims.unit", "FStar.Monotonic.HyperStack.mem", "Prims.l_and", "Lib.Buffer.live", "Lib.Buffer.MUT", "Lib.Buffer.disjoint", "Hacl.Spec.Bignum.ModInv.bn_mod_inv_prime_pre", ...
[]
module Hacl.Bignum.ModInv open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer open Hacl.Bignum.Definitions module ST = FStar.HyperStack.ST module S = Hacl.Spec.Bignum.ModInv module BN = Hacl.Bignum module BE = Hacl.Bignum.Exponentiation module BM = Hacl.Bignum.Montgomery...
false
false
Hacl.Bignum.ModInv.fst
{ "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...
null
val bn_mod_inv_prime_precomp_st : t: Hacl.Bignum.Definitions.limb_t -> len: Hacl.Bignum.meta_len t -> Type0
[]
Hacl.Bignum.ModInv.bn_mod_inv_prime_precomp_st
{ "file_name": "code/bignum/Hacl.Bignum.ModInv.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
t: Hacl.Bignum.Definitions.limb_t -> len: Hacl.Bignum.meta_len t -> Type0
{ "end_col": 44, "end_line": 76, "start_col": 4, "start_line": 61 }
FStar.HyperStack.ST.Stack
val bn_mod_inv_prime_n2: #t:limb_t -> len:BN.meta_len t -> n:lbignum t len -> res:lbignum t len -> Stack unit (requires fun h -> 1 < bn_v h n /\ live h n /\ live h res /\ disjoint res n) (ensures fun h0 _ h1 -> modifies (loc res) h0 h1 /\ as_seq h1 res == S.bn_mod_inv_prime_n2 (as_seq h0 n))
[ { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "SD" }, { "abbrev": true, "full_module": "Hacl.Bignum.Montgomery", "short_module": "BM" }, { "abbrev": true, "full_module": "Hacl.Bignum.Exponentiation", "short_module": "BE" }, { "ab...
false
let bn_mod_inv_prime_n2 #t len n res = let c = BN.bn_sub1 len n (uint #t #SEC 2) res in LowStar.Ignore.ignore c; ()
val bn_mod_inv_prime_n2: #t:limb_t -> len:BN.meta_len t -> n:lbignum t len -> res:lbignum t len -> Stack unit (requires fun h -> 1 < bn_v h n /\ live h n /\ live h res /\ disjoint res n) (ensures fun h0 _ h1 -> modifies (loc res) h0 h1 /\ as_seq h1 res == S.bn_mod_inv_prime_n2 (as_seq h0 n)) le...
true
null
false
let c = BN.bn_sub1 len n (uint #t #SEC 2) res in LowStar.Ignore.ignore c; ()
{ "checked_file": "Hacl.Bignum.ModInv.fst.checked", "dependencies": [ "prims.fst.checked", "LowStar.Ignore.fsti.checked", "Lib.NatMod.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.Bignum.ModInv.fst.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", ...
[]
[ "Hacl.Bignum.Definitions.limb_t", "Hacl.Bignum.meta_len", "Hacl.Bignum.Definitions.lbignum", "Prims.unit", "LowStar.Ignore.ignore", "Hacl.Spec.Bignum.Base.carry", "Hacl.Bignum.bn_sub1", "Lib.IntTypes.uint", "Lib.IntTypes.SEC" ]
[]
module Hacl.Bignum.ModInv open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer open Hacl.Bignum.Definitions module ST = FStar.HyperStack.ST module S = Hacl.Spec.Bignum.ModInv module BN = Hacl.Bignum module BE = Hacl.Bignum.Exponentiation module BM = Hacl.Bignum.Montgomery...
false
false
Hacl.Bignum.ModInv.fst
{ "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...
null
val bn_mod_inv_prime_n2: #t:limb_t -> len:BN.meta_len t -> n:lbignum t len -> res:lbignum t len -> Stack unit (requires fun h -> 1 < bn_v h n /\ live h n /\ live h res /\ disjoint res n) (ensures fun h0 _ h1 -> modifies (loc res) h0 h1 /\ as_seq h1 res == S.bn_mod_inv_prime_n2 (as_seq h0 n))
[]
Hacl.Bignum.ModInv.bn_mod_inv_prime_n2
{ "file_name": "code/bignum/Hacl.Bignum.ModInv.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
len: Hacl.Bignum.meta_len t -> n: Hacl.Bignum.Definitions.lbignum t len -> res: Hacl.Bignum.Definitions.lbignum t len -> FStar.HyperStack.ST.Stack Prims.unit
{ "end_col": 4, "end_line": 56, "start_col": 38, "start_line": 53 }
Prims.Tot
val mk_bn_mod_inv_prime: #t:limb_t -> len:BN.meta_len t -> bn_mod_exp:BE.bn_mod_exp_st t len -> bn_mod_inv_prime_st t len
[ { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "SD" }, { "abbrev": true, "full_module": "Hacl.Bignum.Montgomery", "short_module": "BM" }, { "abbrev": true, "full_module": "Hacl.Bignum.Exponentiation", "short_module": "BE" }, { "ab...
false
let mk_bn_mod_inv_prime #t len bn_mod_exp nBits n a res = let h0 = ST.get () in push_frame (); let n2 = create len (uint #t #SEC 0) in bn_mod_inv_prime_n2 #t len n n2; SD.bn_eval_bound (as_seq h0 n) (v len); bn_mod_exp nBits n a (size (bits t) *! len) n2 res; let h1 = ST.get () in assert (bn_v h1 res =...
val mk_bn_mod_inv_prime: #t:limb_t -> len:BN.meta_len t -> bn_mod_exp:BE.bn_mod_exp_st t len -> bn_mod_inv_prime_st t len let mk_bn_mod_inv_prime #t len bn_mod_exp nBits n a res =
false
null
false
let h0 = ST.get () in push_frame (); let n2 = create len (uint #t #SEC 0) in bn_mod_inv_prime_n2 #t len n n2; SD.bn_eval_bound (as_seq h0 n) (v len); bn_mod_exp nBits n a (size (bits t) *! len) n2 res; let h1 = ST.get () in assert (bn_v h1 res == Lib.NatMod.pow_mod #(bn_v h0 n) (bn_v h0 a) (bn_v h1 n2)); S.mod_inv_prim...
{ "checked_file": "Hacl.Bignum.ModInv.fst.checked", "dependencies": [ "prims.fst.checked", "LowStar.Ignore.fsti.checked", "Lib.NatMod.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.Bignum.ModInv.fst.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", ...
[ "total" ]
[ "Hacl.Bignum.Definitions.limb_t", "Hacl.Bignum.meta_len", "Hacl.Bignum.Exponentiation.bn_mod_exp_st", "Lib.IntTypes.size_t", "Hacl.Bignum.Definitions.lbignum", "FStar.HyperStack.ST.pop_frame", "Prims.unit", "Hacl.Spec.Bignum.ModInv.mod_inv_prime_lemma", "Hacl.Bignum.Definitions.bn_v", "Prims._asse...
[]
module Hacl.Bignum.ModInv open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer open Hacl.Bignum.Definitions module ST = FStar.HyperStack.ST module S = Hacl.Spec.Bignum.ModInv module BN = Hacl.Bignum module BE = Hacl.Bignum.Exponentiation module BM = Hacl.Bignum.Montgomery...
false
false
Hacl.Bignum.ModInv.fst
{ "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...
null
val mk_bn_mod_inv_prime: #t:limb_t -> len:BN.meta_len t -> bn_mod_exp:BE.bn_mod_exp_st t len -> bn_mod_inv_prime_st t len
[]
Hacl.Bignum.ModInv.mk_bn_mod_inv_prime
{ "file_name": "code/bignum/Hacl.Bignum.ModInv.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
len: Hacl.Bignum.meta_len t -> bn_mod_exp: Hacl.Bignum.Exponentiation.bn_mod_exp_st t len -> Hacl.Bignum.ModInv.bn_mod_inv_prime_st t len
{ "end_col": 14, "end_line": 135, "start_col": 57, "start_line": 124 }
Prims.Tot
val mk_bn_mod_inv_prime_precomp: #t:limb_t -> len:BN.meta_len t -> bn_mod_exp_precomp:BE.bn_mod_exp_precomp_st t len -> bn_mod_inv_prime_precomp_st t len
[ { "abbrev": true, "full_module": "Hacl.Spec.Bignum.Definitions", "short_module": "SD" }, { "abbrev": true, "full_module": "Hacl.Bignum.Montgomery", "short_module": "BM" }, { "abbrev": true, "full_module": "Hacl.Bignum.Exponentiation", "short_module": "BE" }, { "ab...
false
let mk_bn_mod_inv_prime_precomp #t len bn_mod_exp_precomp n mu r2 a res = let h0 = ST.get () in push_frame (); let n2 = create len (uint #t #SEC 0) in bn_mod_inv_prime_n2 #t len n n2; SD.bn_eval_bound (as_seq h0 n) (v len); bn_mod_exp_precomp n mu r2 a (size (bits t) *! len) n2 res; let h1 = ST.get () in...
val mk_bn_mod_inv_prime_precomp: #t:limb_t -> len:BN.meta_len t -> bn_mod_exp_precomp:BE.bn_mod_exp_precomp_st t len -> bn_mod_inv_prime_precomp_st t len let mk_bn_mod_inv_prime_precomp #t len bn_mod_exp_precomp n mu r2 a res =
false
null
false
let h0 = ST.get () in push_frame (); let n2 = create len (uint #t #SEC 0) in bn_mod_inv_prime_n2 #t len n n2; SD.bn_eval_bound (as_seq h0 n) (v len); bn_mod_exp_precomp n mu r2 a (size (bits t) *! len) n2 res; let h1 = ST.get () in assert (bn_v h1 res == Lib.NatMod.pow_mod #(bn_v h0 n) (bn_v h0 a) (bn_v h1 n2)); S.mod_...
{ "checked_file": "Hacl.Bignum.ModInv.fst.checked", "dependencies": [ "prims.fst.checked", "LowStar.Ignore.fsti.checked", "Lib.NatMod.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.Bignum.ModInv.fst.checked", "Hacl.Spec.Bignum.Definitions.fst.checked", ...
[ "total" ]
[ "Hacl.Bignum.Definitions.limb_t", "Hacl.Bignum.meta_len", "Hacl.Bignum.Exponentiation.bn_mod_exp_precomp_st", "Hacl.Bignum.Definitions.lbignum", "Hacl.Bignum.Definitions.limb", "FStar.HyperStack.ST.pop_frame", "Prims.unit", "Hacl.Spec.Bignum.ModInv.mod_inv_prime_lemma", "Hacl.Bignum.Definitions.bn_v...
[]
module Hacl.Bignum.ModInv open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer open Hacl.Bignum.Definitions module ST = FStar.HyperStack.ST module S = Hacl.Spec.Bignum.ModInv module BN = Hacl.Bignum module BE = Hacl.Bignum.Exponentiation module BM = Hacl.Bignum.Montgomery...
false
false
Hacl.Bignum.ModInv.fst
{ "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...
null
val mk_bn_mod_inv_prime_precomp: #t:limb_t -> len:BN.meta_len t -> bn_mod_exp_precomp:BE.bn_mod_exp_precomp_st t len -> bn_mod_inv_prime_precomp_st t len
[]
Hacl.Bignum.ModInv.mk_bn_mod_inv_prime_precomp
{ "file_name": "code/bignum/Hacl.Bignum.ModInv.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
len: Hacl.Bignum.meta_len t -> bn_mod_exp_precomp: Hacl.Bignum.Exponentiation.bn_mod_exp_precomp_st t len -> Hacl.Bignum.ModInv.bn_mod_inv_prime_precomp_st t len
{ "end_col": 14, "end_line": 97, "start_col": 73, "start_line": 86 }
Prims.Tot
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let aff_point = lbuffer uint64 10ul
let aff_point =
false
null
false
lbuffer uint64 10ul
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[ "total" ]
[ "Lib.Buffer.lbuffer", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t" ]
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
true
Hacl.Impl.K256.Point.fsti
{ "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...
null
val aff_point : Type0
[]
Hacl.Impl.K256.Point.aff_point
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 35, "end_line": 38, "start_col": 16, "start_line": 38 }
Prims.Tot
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let point = lbuffer uint64 15ul
let point =
false
null
false
lbuffer uint64 15ul
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[ "total" ]
[ "Lib.Buffer.lbuffer", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t" ]
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
true
Hacl.Impl.K256.Point.fsti
{ "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...
null
val point : Type0
[]
Hacl.Impl.K256.Point.point
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 31, "end_line": 66, "start_col": 12, "start_line": 66 }
Prims.Tot
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let aff_point_inv (h:mem) (p:aff_point) = aff_point_inv_seq (as_seq h p)
let aff_point_inv (h: mem) (p: aff_point) =
false
null
false
aff_point_inv_seq (as_seq h p)
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[ "total" ]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.K256.Point.aff_point", "Hacl.Impl.K256.Point.aff_point_inv_seq", "Lib.Buffer.as_seq", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Prims.logical" ]
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
true
Hacl.Impl.K256.Point.fsti
{ "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...
null
val aff_point_inv : h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.K256.Point.aff_point -> Prims.logical
[]
Hacl.Impl.K256.Point.aff_point_inv
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.K256.Point.aff_point -> Prims.logical
{ "end_col": 32, "end_line": 42, "start_col": 2, "start_line": 42 }
Prims.GTot
val aff_point_eval (h: mem) (p: aff_point{aff_point_inv h p}) : GTot S.aff_point
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let aff_point_eval (h:mem) (p:aff_point{aff_point_inv h p}) : GTot S.aff_point = aff_point_eval_seq (as_seq h p)
val aff_point_eval (h: mem) (p: aff_point{aff_point_inv h p}) : GTot S.aff_point let aff_point_eval (h: mem) (p: aff_point{aff_point_inv h p}) : GTot S.aff_point =
false
null
false
aff_point_eval_seq (as_seq h p)
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[ "sometrivial" ]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.K256.Point.aff_point", "Hacl.Impl.K256.Point.aff_point_inv", "Hacl.Impl.K256.Point.aff_point_eval_seq", "Lib.Buffer.as_seq", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Spec.K256.PointOps.aff_point" ]
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
false
Hacl.Impl.K256.Point.fsti
{ "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...
null
val aff_point_eval (h: mem) (p: aff_point{aff_point_inv h p}) : GTot S.aff_point
[]
Hacl.Impl.K256.Point.aff_point_eval
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.K256.Point.aff_point{Hacl.Impl.K256.Point.aff_point_inv h p} -> Prims.GTot Spec.K256.PointOps.aff_point
{ "end_col": 33, "end_line": 46, "start_col": 2, "start_line": 46 }
Prims.Tot
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let aff_point_seq = LSeq.lseq uint64 10
let aff_point_seq =
false
null
false
LSeq.lseq uint64 10
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[ "total" ]
[ "Lib.Sequence.lseq", "Lib.IntTypes.uint64" ]
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
true
Hacl.Impl.K256.Point.fsti
{ "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...
null
val aff_point_seq : Type0
[]
Hacl.Impl.K256.Point.aff_point_seq
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 39, "end_line": 27, "start_col": 20, "start_line": 27 }
Prims.Tot
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let aff_point_inv_seq (p:aff_point_seq) = inv_fully_reduced5 (as_felem5_lseq (LSeq.sub p 0 5)) /\ inv_fully_reduced5 (as_felem5_lseq (LSeq.sub p 5 5))
let aff_point_inv_seq (p: aff_point_seq) =
false
null
false
inv_fully_reduced5 (as_felem5_lseq (LSeq.sub p 0 5)) /\ inv_fully_reduced5 (as_felem5_lseq (LSeq.sub p 5 5))
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[ "total" ]
[ "Hacl.Impl.K256.Point.aff_point_seq", "Prims.l_and", "Hacl.K256.Field.inv_fully_reduced5", "Hacl.Impl.K256.Point.as_felem5_lseq", "Lib.Sequence.sub", "Lib.IntTypes.uint64", "Prims.logical" ]
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
true
Hacl.Impl.K256.Point.fsti
{ "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...
null
val aff_point_inv_seq : p: Hacl.Impl.K256.Point.aff_point_seq -> Prims.logical
[]
Hacl.Impl.K256.Point.aff_point_inv_seq
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
p: Hacl.Impl.K256.Point.aff_point_seq -> Prims.logical
{ "end_col": 54, "end_line": 31, "start_col": 2, "start_line": 30 }
Prims.Tot
val aff_point_eval_seq (p: aff_point_seq{aff_point_inv_seq p}) : S.aff_point
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let aff_point_eval_seq (p:aff_point_seq{aff_point_inv_seq p}) : S.aff_point = as_nat5 (as_felem5_lseq (LSeq.sub p 0 5)), as_nat5 (as_felem5_lseq (LSeq.sub p 5 5))
val aff_point_eval_seq (p: aff_point_seq{aff_point_inv_seq p}) : S.aff_point let aff_point_eval_seq (p: aff_point_seq{aff_point_inv_seq p}) : S.aff_point =
false
null
false
as_nat5 (as_felem5_lseq (LSeq.sub p 0 5)), as_nat5 (as_felem5_lseq (LSeq.sub p 5 5))
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[ "total" ]
[ "Hacl.Impl.K256.Point.aff_point_seq", "Hacl.Impl.K256.Point.aff_point_inv_seq", "FStar.Pervasives.Native.Mktuple2", "Spec.K256.PointOps.felem", "Hacl.Spec.K256.Field52.Definitions.as_nat5", "Hacl.Impl.K256.Point.as_felem5_lseq", "Lib.Sequence.sub", "Lib.IntTypes.uint64", "Spec.K256.PointOps.aff_poin...
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
false
Hacl.Impl.K256.Point.fsti
{ "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...
null
val aff_point_eval_seq (p: aff_point_seq{aff_point_inv_seq p}) : S.aff_point
[]
Hacl.Impl.K256.Point.aff_point_eval_seq
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
p: Hacl.Impl.K256.Point.aff_point_seq{Hacl.Impl.K256.Point.aff_point_inv_seq p} -> Spec.K256.PointOps.aff_point
{ "end_col": 43, "end_line": 35, "start_col": 2, "start_line": 34 }
Prims.GTot
val point_eval (h: mem) (p: point) : GTot S.proj_point
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let point_eval (h:mem) (p:point) : GTot S.proj_point = feval h (gsub p 0ul 5ul), feval h (gsub p 5ul 5ul), feval h (gsub p 10ul 5ul)
val point_eval (h: mem) (p: point) : GTot S.proj_point let point_eval (h: mem) (p: point) : GTot S.proj_point =
false
null
false
feval h (gsub p 0ul 5ul), feval h (gsub p 5ul 5ul), feval h (gsub p 10ul 5ul)
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[ "sometrivial" ]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.K256.Point.point", "FStar.Pervasives.Native.Mktuple3", "Spec.K256.PointOps.felem", "Hacl.K256.Field.feval", "Lib.Buffer.gsub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Spec.K256.PointOps.proj_point" ]
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
false
Hacl.Impl.K256.Point.fsti
{ "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...
null
val point_eval (h: mem) (p: point) : GTot S.proj_point
[]
Hacl.Impl.K256.Point.point_eval
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.K256.Point.point -> Prims.GTot Spec.K256.PointOps.proj_point
{ "end_col": 27, "end_line": 110, "start_col": 2, "start_line": 108 }
Prims.Tot
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let point_inv (h:mem) (p:point) = inv_lazy_reduced2 h (gsub p 0ul 5ul) /\ inv_lazy_reduced2 h (gsub p 5ul 5ul) /\ inv_lazy_reduced2 h (gsub p 10ul 5ul)
let point_inv (h: mem) (p: point) =
false
null
false
inv_lazy_reduced2 h (gsub p 0ul 5ul) /\ inv_lazy_reduced2 h (gsub p 5ul 5ul) /\ inv_lazy_reduced2 h (gsub p 10ul 5ul)
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[ "total" ]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.K256.Point.point", "Prims.l_and", "Hacl.K256.Field.inv_lazy_reduced2", "Lib.Buffer.gsub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Prims.logical" ]
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
true
Hacl.Impl.K256.Point.fsti
{ "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...
null
val point_inv : h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.K256.Point.point -> Prims.logical
[]
Hacl.Impl.K256.Point.point_inv
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
h: FStar.Monotonic.HyperStack.mem -> p: Hacl.Impl.K256.Point.point -> Prims.logical
{ "end_col": 39, "end_line": 97, "start_col": 2, "start_line": 95 }
Prims.Tot
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let point_inv_lseq (p:LSeq.lseq uint64 15) = inv_lazy_reduced2_5 (as_felem5_lseq (LSeq.sub p 0 5)) /\ inv_lazy_reduced2_5 (as_felem5_lseq (LSeq.sub p 5 5)) /\ inv_lazy_reduced2_5 (as_felem5_lseq (LSeq.sub p 10 5))
let point_inv_lseq (p: LSeq.lseq uint64 15) =
false
null
false
inv_lazy_reduced2_5 (as_felem5_lseq (LSeq.sub p 0 5)) /\ inv_lazy_reduced2_5 (as_felem5_lseq (LSeq.sub p 5 5)) /\ inv_lazy_reduced2_5 (as_felem5_lseq (LSeq.sub p 10 5))
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[ "total" ]
[ "Lib.Sequence.lseq", "Lib.IntTypes.uint64", "Prims.l_and", "Hacl.K256.Field.inv_lazy_reduced2_5", "Hacl.Impl.K256.Point.as_felem5_lseq", "Lib.Sequence.sub", "Prims.logical" ]
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
false
Hacl.Impl.K256.Point.fsti
{ "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...
null
val point_inv_lseq : p: Lib.Sequence.lseq Lib.IntTypes.uint64 15 -> Prims.logical
[]
Hacl.Impl.K256.Point.point_inv_lseq
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
p: Lib.Sequence.lseq Lib.IntTypes.uint64 15 -> Prims.logical
{ "end_col": 56, "end_line": 91, "start_col": 2, "start_line": 89 }
FStar.HyperStack.ST.Stack
val aff_gety (p: aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 5ul 5ul /\ h0 == h1)
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let aff_gety (p:aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 5ul 5ul /\ h0 == h1) = sub p 5ul 5ul
val aff_gety (p: aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 5ul 5ul /\ h0 == h1) let aff_gety (p: aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 5ul 5ul /\ h0 == h1) =
true
null
false
sub p 5ul 5ul
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[]
[ "Hacl.Impl.K256.Point.aff_point", "Lib.Buffer.sub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Lib.Buffer.lbuffer_t", "Hacl.K256.Field.felem", "FStar.Monotonic.HyperStack.mem", "Lib.Buffer.live", "Prims.l_and", "Prims.eq2", "Hacl.K256.Field.nlimb", "Lib.Buffer.gsub...
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
false
Hacl.Impl.K256.Point.fsti
{ "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...
null
val aff_gety (p: aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 5ul 5ul /\ h0 == h1)
[]
Hacl.Impl.K256.Point.aff_gety
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
p: Hacl.Impl.K256.Point.aff_point -> FStar.HyperStack.ST.Stack Hacl.K256.Field.felem
{ "end_col": 17, "end_line": 59, "start_col": 4, "start_line": 59 }
FStar.HyperStack.ST.Stack
val aff_getx (p: aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 5ul /\ h0 == h1)
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let aff_getx (p:aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 5ul /\ h0 == h1) = sub p 0ul 5ul
val aff_getx (p: aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 5ul /\ 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 5ul /\ h0 == h1) =
true
null
false
sub p 0ul 5ul
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[]
[ "Hacl.Impl.K256.Point.aff_point", "Lib.Buffer.sub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Lib.Buffer.lbuffer_t", "Hacl.K256.Field.felem", "FStar.Monotonic.HyperStack.mem", "Lib.Buffer.live", "Prims.l_and", "Prims.eq2", "Hacl.K256.Field.nlimb", "Lib.Buffer.gsub...
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
false
Hacl.Impl.K256.Point.fsti
{ "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...
null
val aff_getx (p: aff_point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 5ul /\ h0 == h1)
[]
Hacl.Impl.K256.Point.aff_getx
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
p: Hacl.Impl.K256.Point.aff_point -> FStar.HyperStack.ST.Stack Hacl.K256.Field.felem
{ "end_col": 17, "end_line": 53, "start_col": 4, "start_line": 53 }
Prims.Tot
val as_felem5_lseq (s: LSeq.lseq uint64 5) : felem5
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let as_felem5_lseq (s:LSeq.lseq uint64 5) : felem5 = let open Lib.Sequence in (s.[0],s.[1],s.[2],s.[3],s.[4])
val as_felem5_lseq (s: LSeq.lseq uint64 5) : felem5 let as_felem5_lseq (s: LSeq.lseq uint64 5) : felem5 =
false
null
false
let open Lib.Sequence in (s.[ 0 ], s.[ 1 ], s.[ 2 ], s.[ 3 ], s.[ 4 ])
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[ "total" ]
[ "Lib.Sequence.lseq", "Lib.IntTypes.uint64", "FStar.Pervasives.Native.Mktuple5", "Lib.Sequence.op_String_Access", "Hacl.Spec.K256.Field52.Definitions.felem5" ]
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract
false
false
Hacl.Impl.K256.Point.fsti
{ "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...
null
val as_felem5_lseq (s: LSeq.lseq uint64 5) : felem5
[]
Hacl.Impl.K256.Point.as_felem5_lseq
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
s: Lib.Sequence.lseq Lib.IntTypes.uint64 5 -> Hacl.Spec.K256.Field52.Definitions.felem5
{ "end_col": 33, "end_line": 21, "start_col": 2, "start_line": 20 }
FStar.HyperStack.ST.Stack
val gety (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 5ul 5ul /\ h0 == h1)
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let gety (p:point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 5ul 5ul /\ h0 == h1) = sub p 5ul 5ul
val gety (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 5ul 5ul /\ h0 == h1) let gety (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 5ul 5ul /\ h0 == h1) =
true
null
false
sub p 5ul 5ul
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[]
[ "Hacl.Impl.K256.Point.point", "Lib.Buffer.sub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Lib.Buffer.lbuffer_t", "Hacl.K256.Field.felem", "FStar.Monotonic.HyperStack.mem", "Lib.Buffer.live", "Prims.l_and", "Prims.eq2", "Hacl.K256.Field.nlimb", "Lib.Buffer.gsub" ]
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
false
Hacl.Impl.K256.Point.fsti
{ "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...
null
val gety (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 5ul 5ul /\ h0 == h1)
[]
Hacl.Impl.K256.Point.gety
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
p: Hacl.Impl.K256.Point.point -> FStar.HyperStack.ST.Stack Hacl.K256.Field.felem
{ "end_col": 17, "end_line": 78, "start_col": 4, "start_line": 78 }
FStar.HyperStack.ST.Stack
val getx (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 5ul /\ h0 == h1)
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let getx (p:point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 5ul /\ h0 == h1) = sub p 0ul 5ul
val getx (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 5ul /\ h0 == h1) let getx (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 5ul /\ h0 == h1) =
true
null
false
sub p 0ul 5ul
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[]
[ "Hacl.Impl.K256.Point.point", "Lib.Buffer.sub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Lib.Buffer.lbuffer_t", "Hacl.K256.Field.felem", "FStar.Monotonic.HyperStack.mem", "Lib.Buffer.live", "Prims.l_and", "Prims.eq2", "Hacl.K256.Field.nlimb", "Lib.Buffer.gsub" ]
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
false
Hacl.Impl.K256.Point.fsti
{ "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...
null
val getx (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 0ul 5ul /\ h0 == h1)
[]
Hacl.Impl.K256.Point.getx
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
p: Hacl.Impl.K256.Point.point -> FStar.HyperStack.ST.Stack Hacl.K256.Field.felem
{ "end_col": 17, "end_line": 72, "start_col": 4, "start_line": 72 }
FStar.HyperStack.ST.Stack
val getz (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 10ul 5ul /\ h0 == h1)
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let getz (p:point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 10ul 5ul /\ h0 == h1) = sub p 10ul 5ul
val getz (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 10ul 5ul /\ h0 == h1) let getz (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 10ul 5ul /\ h0 == h1) =
true
null
false
sub p 10ul 5ul
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[]
[ "Hacl.Impl.K256.Point.point", "Lib.Buffer.sub", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Lib.Buffer.lbuffer_t", "Hacl.K256.Field.felem", "FStar.Monotonic.HyperStack.mem", "Lib.Buffer.live", "Prims.l_and", "Prims.eq2", "Hacl.K256.Field.nlimb", "Lib.Buffer.gsub" ]
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
false
Hacl.Impl.K256.Point.fsti
{ "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...
null
val getz (p: point) : Stack felem (requires fun h -> live h p) (ensures fun h0 f h1 -> f == gsub p 10ul 5ul /\ h0 == h1)
[]
Hacl.Impl.K256.Point.getz
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
p: Hacl.Impl.K256.Point.point -> FStar.HyperStack.ST.Stack Hacl.K256.Field.felem
{ "end_col": 18, "end_line": 84, "start_col": 4, "start_line": 84 }
Prims.GTot
val point_eval_lseq (p: LSeq.lseq uint64 15) : GTot S.proj_point
[ { "abbrev": false, "full_module": "Hacl.K256.Field", "short_module": null }, { "abbrev": true, "full_module": "Spec.K256", "short_module": "S" }, { "abbrev": true, "full_module": "Lib.Sequence", "short_module": "LSeq" }, { "abbrev": true, "full_module": "FStar...
false
let point_eval_lseq (p:LSeq.lseq uint64 15) : GTot S.proj_point = feval5 (as_felem5_lseq (LSeq.sub p 0 5)), feval5 (as_felem5_lseq (LSeq.sub p 5 5)), feval5 (as_felem5_lseq (LSeq.sub p 10 5))
val point_eval_lseq (p: LSeq.lseq uint64 15) : GTot S.proj_point let point_eval_lseq (p: LSeq.lseq uint64 15) : GTot S.proj_point =
false
null
false
feval5 (as_felem5_lseq (LSeq.sub p 0 5)), feval5 (as_felem5_lseq (LSeq.sub p 5 5)), feval5 (as_felem5_lseq (LSeq.sub p 10 5))
{ "checked_file": "Hacl.Impl.K256.Point.fsti.checked", "dependencies": [ "Spec.K256.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.K256.Field.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Pervasives.N...
[ "sometrivial" ]
[ "Lib.Sequence.lseq", "Lib.IntTypes.uint64", "FStar.Pervasives.Native.Mktuple3", "Spec.K256.PointOps.felem", "Hacl.Spec.K256.Field52.Definitions.feval5", "Hacl.Impl.K256.Point.as_felem5_lseq", "Lib.Sequence.sub", "Spec.K256.PointOps.proj_point" ]
[]
module Hacl.Impl.K256.Point 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 S = Spec.K256 open Hacl.K256.Field #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract let as_fe...
false
false
Hacl.Impl.K256.Point.fsti
{ "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...
null
val point_eval_lseq (p: LSeq.lseq uint64 15) : GTot S.proj_point
[]
Hacl.Impl.K256.Point.point_eval_lseq
{ "file_name": "code/k256/Hacl.Impl.K256.Point.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
p: Lib.Sequence.lseq Lib.IntTypes.uint64 15 -> Prims.GTot Spec.K256.PointOps.proj_point
{ "end_col": 43, "end_line": 104, "start_col": 2, "start_line": 102 }
Prims.Tot
val crypto_kem_dec: a:FP.frodo_alg -> gen_a:FP.frodo_gen_a{is_supported gen_a} -> crypto_kem_dec_st a gen_a
[ { "abbrev": true, "full_module": "Spec.Frodo.Params", "short_module": "FP" }, { "abbrev": true, "full_module": "Spec.Frodo.KEM", "short_module": "S" }, { "abbrev": false, "full_module": "Hacl.Frodo.Random", "short_module": null }, { "abbrev": false, "full_modu...
false
let crypto_kem_dec a gen_a ss ct sk = Hacl.Impl.Frodo.KEM.Decaps.crypto_kem_dec a gen_a ss ct sk
val crypto_kem_dec: a:FP.frodo_alg -> gen_a:FP.frodo_gen_a{is_supported gen_a} -> crypto_kem_dec_st a gen_a let crypto_kem_dec a gen_a ss ct sk =
false
null
false
Hacl.Impl.Frodo.KEM.Decaps.crypto_kem_dec a gen_a ss ct sk
{ "checked_file": "Hacl.Frodo.KEM.fst.checked", "dependencies": [ "Spec.Frodo.Params.fst.checked", "Spec.Frodo.KEM.fst.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Impl.Matrix.fst.checked", "Hacl.Impl.Frodo.Params.fst.checked", "Hacl.Im...
[ "total" ]
[ "Spec.Frodo.Params.frodo_alg", "Spec.Frodo.Params.frodo_gen_a", "Prims.b2t", "Hacl.Impl.Frodo.Params.is_supported", "Hacl.Impl.Matrix.lbytes", "Hacl.Impl.Frodo.Params.crypto_bytes", "Hacl.Impl.Frodo.Params.crypto_ciphertextbytes", "Hacl.Impl.Frodo.Params.crypto_secretkeybytes", "Hacl.Impl.Frodo.KEM....
[]
module Hacl.Frodo.KEM open FStar.HyperStack open FStar.HyperStack.ST open Lib.IntTypes open Lib.Buffer open Hacl.Impl.Matrix open Hacl.Impl.Frodo.Params open Hacl.Impl.Frodo.KEM open Hacl.Frodo.Random module S = Spec.Frodo.KEM module FP = Spec.Frodo.Params #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_fo...
false
false
Hacl.Frodo.KEM.fst
{ "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...
null
val crypto_kem_dec: a:FP.frodo_alg -> gen_a:FP.frodo_gen_a{is_supported gen_a} -> crypto_kem_dec_st a gen_a
[]
Hacl.Frodo.KEM.crypto_kem_dec
{ "file_name": "code/frodo/Hacl.Frodo.KEM.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Frodo.Params.frodo_alg -> gen_a: Spec.Frodo.Params.frodo_gen_a{Hacl.Impl.Frodo.Params.is_supported gen_a} -> Hacl.Frodo.KEM.crypto_kem_dec_st a gen_a
{ "end_col": 60, "end_line": 73, "start_col": 2, "start_line": 73 }
Prims.Tot
val crypto_kem_keypair: a:FP.frodo_alg -> gen_a:FP.frodo_gen_a{is_supported gen_a} -> crypto_kem_keypair_st a gen_a
[ { "abbrev": true, "full_module": "Spec.Frodo.Params", "short_module": "FP" }, { "abbrev": true, "full_module": "Spec.Frodo.KEM", "short_module": "S" }, { "abbrev": false, "full_module": "Hacl.Frodo.Random", "short_module": null }, { "abbrev": false, "full_modu...
false
let crypto_kem_keypair a gen_a pk sk = Hacl.Impl.Frodo.KEM.KeyGen.crypto_kem_keypair a gen_a pk sk
val crypto_kem_keypair: a:FP.frodo_alg -> gen_a:FP.frodo_gen_a{is_supported gen_a} -> crypto_kem_keypair_st a gen_a let crypto_kem_keypair a gen_a pk sk =
false
null
false
Hacl.Impl.Frodo.KEM.KeyGen.crypto_kem_keypair a gen_a pk sk
{ "checked_file": "Hacl.Frodo.KEM.fst.checked", "dependencies": [ "Spec.Frodo.Params.fst.checked", "Spec.Frodo.KEM.fst.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Impl.Matrix.fst.checked", "Hacl.Impl.Frodo.Params.fst.checked", "Hacl.Im...
[ "total" ]
[ "Spec.Frodo.Params.frodo_alg", "Spec.Frodo.Params.frodo_gen_a", "Prims.b2t", "Hacl.Impl.Frodo.Params.is_supported", "Hacl.Impl.Matrix.lbytes", "Hacl.Impl.Frodo.Params.crypto_publickeybytes", "Hacl.Impl.Frodo.Params.crypto_secretkeybytes", "Hacl.Impl.Frodo.KEM.KeyGen.crypto_kem_keypair", "Lib.IntType...
[]
module Hacl.Frodo.KEM open FStar.HyperStack open FStar.HyperStack.ST open Lib.IntTypes open Lib.Buffer open Hacl.Impl.Matrix open Hacl.Impl.Frodo.Params open Hacl.Impl.Frodo.KEM open Hacl.Frodo.Random module S = Spec.Frodo.KEM module FP = Spec.Frodo.Params #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_fo...
false
false
Hacl.Frodo.KEM.fst
{ "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...
null
val crypto_kem_keypair: a:FP.frodo_alg -> gen_a:FP.frodo_gen_a{is_supported gen_a} -> crypto_kem_keypair_st a gen_a
[]
Hacl.Frodo.KEM.crypto_kem_keypair
{ "file_name": "code/frodo/Hacl.Frodo.KEM.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Frodo.Params.frodo_alg -> gen_a: Spec.Frodo.Params.frodo_gen_a{Hacl.Impl.Frodo.Params.is_supported gen_a} -> Hacl.Frodo.KEM.crypto_kem_keypair_st a gen_a
{ "end_col": 61, "end_line": 34, "start_col": 2, "start_line": 34 }
Prims.Tot
val crypto_kem_enc: a:FP.frodo_alg -> gen_a:FP.frodo_gen_a{is_supported gen_a} -> crypto_kem_enc_st a gen_a
[ { "abbrev": true, "full_module": "Spec.Frodo.Params", "short_module": "FP" }, { "abbrev": true, "full_module": "Spec.Frodo.KEM", "short_module": "S" }, { "abbrev": false, "full_module": "Hacl.Frodo.Random", "short_module": null }, { "abbrev": false, "full_modu...
false
let crypto_kem_enc a gen_a ct ss pk = Hacl.Impl.Frodo.KEM.Encaps.crypto_kem_enc a gen_a ct ss pk
val crypto_kem_enc: a:FP.frodo_alg -> gen_a:FP.frodo_gen_a{is_supported gen_a} -> crypto_kem_enc_st a gen_a let crypto_kem_enc a gen_a ct ss pk =
false
null
false
Hacl.Impl.Frodo.KEM.Encaps.crypto_kem_enc a gen_a ct ss pk
{ "checked_file": "Hacl.Frodo.KEM.fst.checked", "dependencies": [ "Spec.Frodo.Params.fst.checked", "Spec.Frodo.KEM.fst.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Impl.Matrix.fst.checked", "Hacl.Impl.Frodo.Params.fst.checked", "Hacl.Im...
[ "total" ]
[ "Spec.Frodo.Params.frodo_alg", "Spec.Frodo.Params.frodo_gen_a", "Prims.b2t", "Hacl.Impl.Frodo.Params.is_supported", "Hacl.Impl.Matrix.lbytes", "Hacl.Impl.Frodo.Params.crypto_ciphertextbytes", "Hacl.Impl.Frodo.Params.crypto_bytes", "Hacl.Impl.Frodo.Params.crypto_publickeybytes", "Hacl.Impl.Frodo.KEM....
[]
module Hacl.Frodo.KEM open FStar.HyperStack open FStar.HyperStack.ST open Lib.IntTypes open Lib.Buffer open Hacl.Impl.Matrix open Hacl.Impl.Frodo.Params open Hacl.Impl.Frodo.KEM open Hacl.Frodo.Random module S = Spec.Frodo.KEM module FP = Spec.Frodo.Params #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_fo...
false
false
Hacl.Frodo.KEM.fst
{ "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...
null
val crypto_kem_enc: a:FP.frodo_alg -> gen_a:FP.frodo_gen_a{is_supported gen_a} -> crypto_kem_enc_st a gen_a
[]
Hacl.Frodo.KEM.crypto_kem_enc
{ "file_name": "code/frodo/Hacl.Frodo.KEM.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Frodo.Params.frodo_alg -> gen_a: Spec.Frodo.Params.frodo_gen_a{Hacl.Impl.Frodo.Params.is_supported gen_a} -> Hacl.Frodo.KEM.crypto_kem_enc_st a gen_a
{ "end_col": 60, "end_line": 54, "start_col": 2, "start_line": 54 }
Prims.Tot
[ { "abbrev": true, "full_module": "Spec.Frodo.Params", "short_module": "FP" }, { "abbrev": true, "full_module": "Spec.Frodo.KEM", "short_module": "S" }, { "abbrev": false, "full_module": "Hacl.Frodo.Random", "short_module": null }, { "abbrev": false, "full_modu...
false
let crypto_kem_keypair_st (a:FP.frodo_alg) (gen_a:FP.frodo_gen_a{is_supported gen_a}) = pk:lbytes (crypto_publickeybytes a) -> sk:lbytes (crypto_secretkeybytes a) -> Stack uint32 (requires fun h -> live h pk /\ live h sk /\ disjoint pk sk /\ disjoint state pk /\ disjoint state sk) (ensures ...
let crypto_kem_keypair_st (a: FP.frodo_alg) (gen_a: FP.frodo_gen_a{is_supported gen_a}) =
false
null
false
pk: lbytes (crypto_publickeybytes a) -> sk: lbytes (crypto_secretkeybytes a) -> Stack uint32 (requires fun h -> live h pk /\ live h sk /\ disjoint pk sk /\ disjoint state pk /\ disjoint state sk) (ensures fun h0 r h1 -> modifies (loc state |+| (loc pk |+| loc sk)) h0 h1 /\ ...
{ "checked_file": "Hacl.Frodo.KEM.fst.checked", "dependencies": [ "Spec.Frodo.Params.fst.checked", "Spec.Frodo.KEM.fst.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Impl.Matrix.fst.checked", "Hacl.Impl.Frodo.Params.fst.checked", "Hacl.Im...
[ "total" ]
[ "Spec.Frodo.Params.frodo_alg", "Spec.Frodo.Params.frodo_gen_a", "Prims.b2t", "Hacl.Impl.Frodo.Params.is_supported", "Hacl.Impl.Matrix.lbytes", "Hacl.Impl.Frodo.Params.crypto_publickeybytes", "Hacl.Impl.Frodo.Params.crypto_secretkeybytes", "Lib.IntTypes.uint32", "FStar.Monotonic.HyperStack.mem", "P...
[]
module Hacl.Frodo.KEM open FStar.HyperStack open FStar.HyperStack.ST open Lib.IntTypes open Lib.Buffer open Hacl.Impl.Matrix open Hacl.Impl.Frodo.Params open Hacl.Impl.Frodo.KEM open Hacl.Frodo.Random module S = Spec.Frodo.KEM module FP = Spec.Frodo.Params #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_fo...
false
false
Hacl.Frodo.KEM.fst
{ "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...
null
val crypto_kem_keypair_st : a: Spec.Frodo.Params.frodo_alg -> gen_a: Spec.Frodo.Params.frodo_gen_a{Hacl.Impl.Frodo.Params.is_supported gen_a} -> Type0
[]
Hacl.Frodo.KEM.crypto_kem_keypair_st
{ "file_name": "code/frodo/Hacl.Frodo.KEM.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Frodo.Params.frodo_alg -> gen_a: Spec.Frodo.Params.frodo_gen_a{Hacl.Impl.Frodo.Params.is_supported gen_a} -> Type0
{ "end_col": 85, "end_line": 28, "start_col": 4, "start_line": 21 }
Prims.Tot
[ { "abbrev": true, "full_module": "Spec.Frodo.Params", "short_module": "FP" }, { "abbrev": true, "full_module": "Spec.Frodo.KEM", "short_module": "S" }, { "abbrev": false, "full_module": "Hacl.Frodo.Random", "short_module": null }, { "abbrev": false, "full_modu...
false
let crypto_kem_enc_st (a:FP.frodo_alg) (gen_a:FP.frodo_gen_a{is_supported gen_a}) = ct:lbytes (crypto_ciphertextbytes a) -> ss:lbytes (crypto_bytes a) -> pk:lbytes (crypto_publickeybytes a) -> Stack uint32 (requires fun h -> live h ct /\ live h ss /\ live h pk /\ disjoint ct ss /\ disjoint ct ...
let crypto_kem_enc_st (a: FP.frodo_alg) (gen_a: FP.frodo_gen_a{is_supported gen_a}) =
false
null
false
ct: lbytes (crypto_ciphertextbytes a) -> ss: lbytes (crypto_bytes a) -> pk: lbytes (crypto_publickeybytes a) -> Stack uint32 (requires fun h -> live h ct /\ live h ss /\ live h pk /\ disjoint ct ss /\ disjoint ct pk /\ disjoint ss pk /\ disjoint state ct /\ disjoint stat...
{ "checked_file": "Hacl.Frodo.KEM.fst.checked", "dependencies": [ "Spec.Frodo.Params.fst.checked", "Spec.Frodo.KEM.fst.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Impl.Matrix.fst.checked", "Hacl.Impl.Frodo.Params.fst.checked", "Hacl.Im...
[ "total" ]
[ "Spec.Frodo.Params.frodo_alg", "Spec.Frodo.Params.frodo_gen_a", "Prims.b2t", "Hacl.Impl.Frodo.Params.is_supported", "Hacl.Impl.Matrix.lbytes", "Hacl.Impl.Frodo.Params.crypto_ciphertextbytes", "Hacl.Impl.Frodo.Params.crypto_bytes", "Hacl.Impl.Frodo.Params.crypto_publickeybytes", "Lib.IntTypes.uint32"...
[]
module Hacl.Frodo.KEM open FStar.HyperStack open FStar.HyperStack.ST open Lib.IntTypes open Lib.Buffer open Hacl.Impl.Matrix open Hacl.Impl.Frodo.Params open Hacl.Impl.Frodo.KEM open Hacl.Frodo.Random module S = Spec.Frodo.KEM module FP = Spec.Frodo.Params #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_fo...
false
false
Hacl.Frodo.KEM.fst
{ "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...
null
val crypto_kem_enc_st : a: Spec.Frodo.Params.frodo_alg -> gen_a: Spec.Frodo.Params.frodo_gen_a{Hacl.Impl.Frodo.Params.is_supported gen_a} -> Type0
[]
Hacl.Frodo.KEM.crypto_kem_enc_st
{ "file_name": "code/frodo/Hacl.Frodo.KEM.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Frodo.Params.frodo_alg -> gen_a: Spec.Frodo.Params.frodo_gen_a{Hacl.Impl.Frodo.Params.is_supported gen_a} -> Type0
{ "end_col": 96, "end_line": 48, "start_col": 4, "start_line": 39 }
Prims.Tot
[ { "abbrev": true, "full_module": "Spec.Frodo.Params", "short_module": "FP" }, { "abbrev": true, "full_module": "Spec.Frodo.KEM", "short_module": "S" }, { "abbrev": false, "full_module": "Hacl.Frodo.Random", "short_module": null }, { "abbrev": false, "full_modu...
false
let crypto_kem_dec_st (a:FP.frodo_alg) (gen_a:FP.frodo_gen_a{is_supported gen_a}) = ss:lbytes (crypto_bytes a) -> ct:lbytes (crypto_ciphertextbytes a) -> sk:lbytes (crypto_secretkeybytes a) -> Stack uint32 (requires fun h -> live h ss /\ live h ct /\ live h sk /\ disjoint ss ct /\ disjoint ss ...
let crypto_kem_dec_st (a: FP.frodo_alg) (gen_a: FP.frodo_gen_a{is_supported gen_a}) =
false
null
false
ss: lbytes (crypto_bytes a) -> ct: lbytes (crypto_ciphertextbytes a) -> sk: lbytes (crypto_secretkeybytes a) -> Stack uint32 (requires fun h -> live h ss /\ live h ct /\ live h sk /\ disjoint ss ct /\ disjoint ss sk /\ disjoint ct sk) (ensures fun h0 r h1 -> ...
{ "checked_file": "Hacl.Frodo.KEM.fst.checked", "dependencies": [ "Spec.Frodo.Params.fst.checked", "Spec.Frodo.KEM.fst.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Impl.Matrix.fst.checked", "Hacl.Impl.Frodo.Params.fst.checked", "Hacl.Im...
[ "total" ]
[ "Spec.Frodo.Params.frodo_alg", "Spec.Frodo.Params.frodo_gen_a", "Prims.b2t", "Hacl.Impl.Frodo.Params.is_supported", "Hacl.Impl.Matrix.lbytes", "Hacl.Impl.Frodo.Params.crypto_bytes", "Hacl.Impl.Frodo.Params.crypto_ciphertextbytes", "Hacl.Impl.Frodo.Params.crypto_secretkeybytes", "Lib.IntTypes.uint32"...
[]
module Hacl.Frodo.KEM open FStar.HyperStack open FStar.HyperStack.ST open Lib.IntTypes open Lib.Buffer open Hacl.Impl.Matrix open Hacl.Impl.Frodo.Params open Hacl.Impl.Frodo.KEM open Hacl.Frodo.Random module S = Spec.Frodo.KEM module FP = Spec.Frodo.Params #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_fo...
false
false
Hacl.Frodo.KEM.fst
{ "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...
null
val crypto_kem_dec_st : a: Spec.Frodo.Params.frodo_alg -> gen_a: Spec.Frodo.Params.frodo_gen_a{Hacl.Impl.Frodo.Params.is_supported gen_a} -> Type0
[]
Hacl.Frodo.KEM.crypto_kem_dec_st
{ "file_name": "code/frodo/Hacl.Frodo.KEM.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Frodo.Params.frodo_alg -> gen_a: Spec.Frodo.Params.frodo_gen_a{Hacl.Impl.Frodo.Params.is_supported gen_a} -> Type0
{ "end_col": 77, "end_line": 67, "start_col": 4, "start_line": 59 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let pow2_16 = 0x10000
let pow2_16 =
false
null
false
0x10000
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val pow2_16 : Prims.int
[]
Vale.Def.Words_s.pow2_16
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Prims.int
{ "end_col": 28, "end_line": 26, "start_col": 21, "start_line": 26 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let nat1 = natN pow2_1
let nat1 =
false
null
false
natN pow2_1
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[ "Vale.Def.Words_s.natN", "Vale.Def.Words_s.pow2_1" ]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val nat1 : Type0
[]
Vale.Def.Words_s.nat1
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 22, "end_line": 32, "start_col": 11, "start_line": 32 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let pow2_64 = 0x10000000000000000
let pow2_64 =
false
null
false
0x10000000000000000
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val pow2_64 : Prims.int
[]
Vale.Def.Words_s.pow2_64
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Prims.int
{ "end_col": 40, "end_line": 28, "start_col": 21, "start_line": 28 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let pow2_4 = 0x10
let pow2_4 =
false
null
false
0x10
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val pow2_4 : Prims.int
[]
Vale.Def.Words_s.pow2_4
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Prims.int
{ "end_col": 24, "end_line": 24, "start_col": 20, "start_line": 24 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let nat16 = natN pow2_16
let nat16 =
false
null
false
natN pow2_16
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[ "Vale.Def.Words_s.natN", "Vale.Def.Words_s.pow2_16" ]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val nat16 : Type0
[]
Vale.Def.Words_s.nat16
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 24, "end_line": 36, "start_col": 12, "start_line": 36 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let pow2_1 = 0x2
let pow2_1 =
false
null
false
0x2
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val pow2_1 : Prims.int
[]
Vale.Def.Words_s.pow2_1
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Prims.int
{ "end_col": 23, "end_line": 22, "start_col": 20, "start_line": 22 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let pow2_128 = 0x100000000000000000000000000000000
let pow2_128 =
false
null
false
0x100000000000000000000000000000000
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val pow2_128 : Prims.int
[]
Vale.Def.Words_s.pow2_128
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Prims.int
{ "end_col": 57, "end_line": 29, "start_col": 22, "start_line": 29 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let nat8 = natN pow2_8
let nat8 =
false
null
false
natN pow2_8
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[ "Vale.Def.Words_s.natN", "Vale.Def.Words_s.pow2_8" ]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val nat8 : Type0
[]
Vale.Def.Words_s.nat8
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 22, "end_line": 35, "start_col": 11, "start_line": 35 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let pow2_norm (n:nat) = normalize_term (pow2 n)
let pow2_norm (n: nat) =
false
null
false
normalize_term (pow2 n)
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[ "Prims.nat", "FStar.Pervasives.normalize_term", "Prims.pos", "Prims.pow2" ]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val pow2_norm : n: Prims.nat -> Prims.pos
[]
Vale.Def.Words_s.pow2_norm
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
n: Prims.nat -> Prims.pos
{ "end_col": 54, "end_line": 20, "start_col": 31, "start_line": 20 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let pow2_2 = 0x4
let pow2_2 =
false
null
false
0x4
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val pow2_2 : Prims.int
[]
Vale.Def.Words_s.pow2_2
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Prims.int
{ "end_col": 23, "end_line": 23, "start_col": 20, "start_line": 23 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let nat4 = natN pow2_4
let nat4 =
false
null
false
natN pow2_4
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[ "Vale.Def.Words_s.natN", "Vale.Def.Words_s.pow2_4" ]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val nat4 : Type0
[]
Vale.Def.Words_s.nat4
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 22, "end_line": 34, "start_col": 11, "start_line": 34 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let pow2_32 = 0x100000000
let pow2_32 =
false
null
false
0x100000000
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val pow2_32 : Prims.int
[]
Vale.Def.Words_s.pow2_32
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Prims.int
{ "end_col": 32, "end_line": 27, "start_col": 21, "start_line": 27 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let nat32 = natN pow2_32
let nat32 =
false
null
false
natN pow2_32
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[ "Vale.Def.Words_s.natN", "Vale.Def.Words_s.pow2_32" ]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val nat32 : Type0
[]
Vale.Def.Words_s.nat32
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 24, "end_line": 37, "start_col": 12, "start_line": 37 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let nat2 = natN pow2_2
let nat2 =
false
null
false
natN pow2_2
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[ "Vale.Def.Words_s.natN", "Vale.Def.Words_s.pow2_2" ]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val nat2 : Type0
[]
Vale.Def.Words_s.nat2
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 22, "end_line": 33, "start_col": 11, "start_line": 33 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let nat128 = natN pow2_128
let nat128 =
false
null
false
natN pow2_128
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[ "Vale.Def.Words_s.natN", "Vale.Def.Words_s.pow2_128" ]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val nat128 : Type0
[]
Vale.Def.Words_s.nat128
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 26, "end_line": 39, "start_col": 13, "start_line": 39 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let pow2_8 = 0x100
let pow2_8 =
false
null
false
0x100
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val pow2_8 : Prims.int
[]
Vale.Def.Words_s.pow2_8
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Prims.int
{ "end_col": 25, "end_line": 25, "start_col": 20, "start_line": 25 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let natN (n:nat) = x:nat{x < n}
let natN (n: nat) =
false
null
false
x: nat{x < n}
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[ "Prims.nat", "Prims.b2t", "Prims.op_LessThan" ]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val natN : n: Prims.nat -> Type0
[]
Vale.Def.Words_s.natN
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
n: Prims.nat -> Type0
{ "end_col": 31, "end_line": 31, "start_col": 19, "start_line": 31 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasiv...
false
let nat64 = natN pow2_64
let nat64 =
false
null
false
natN pow2_64
{ "checked_file": "Vale.Def.Words_s.fsti.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": false, "source_file": "Vale.Def.Words_s.fsti" }
[ "total" ]
[ "Vale.Def.Words_s.natN", "Vale.Def.Words_s.pow2_64" ]
[]
module Vale.Def.Words_s open FStar.Mul (* Various representations of words with 2^n bits. For example, a byte might be represented as a record of 8 bools, a sequence of 8 bools, or a natural number 0 <= n < 256. Sequences might be little endian or big endian. A 32-bit word could be four bytes, 32 bools, or a natural...
false
true
Vale.Def.Words_s.fsti
{ "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...
null
val nat64 : Type0
[]
Vale.Def.Words_s.nat64
{ "file_name": "vale/specs/defs/Vale.Def.Words_s.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 24, "end_line": 38, "start_col": 12, "start_line": 38 }
FStar.HyperStack.ST.Stack
val point_add_4 (x3 y3 z3 t1 t2:felem) : Stack unit (requires fun h -> live h x3 /\ live h y3 /\ live h z3 /\ live h t1 /\ live h t2 /\ LowStar.Monotonic.Buffer.all_disjoint [ loc x3; loc y3; loc z3; loc t1; loc t2 ] /\ as_nat h t1 < S.prime /\ as_nat h t2 < S.prime /\ as_nat h y3 < S.prime) (ensures f...
[ { "abbrev": true, "full_module": "Spec.P256", "short_module": "S" }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Field", "short_module": null }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Bignum", "short_module": null }, { "abbrev": false, "full_m...
false
let point_add_4 x3 y3 z3 t1 t2 = fmul_by_b_coeff z3 t2; fsub x3 y3 z3; fdouble z3 x3; fadd x3 x3 z3; fsub z3 t1 x3; fadd x3 t1 x3; fmul_by_b_coeff y3 y3
val point_add_4 (x3 y3 z3 t1 t2:felem) : Stack unit (requires fun h -> live h x3 /\ live h y3 /\ live h z3 /\ live h t1 /\ live h t2 /\ LowStar.Monotonic.Buffer.all_disjoint [ loc x3; loc y3; loc z3; loc t1; loc t2 ] /\ as_nat h t1 < S.prime /\ as_nat h t2 < S.prime /\ as_nat h y3 < S.prime) (ensures f...
true
null
false
fmul_by_b_coeff z3 t2; fsub x3 y3 z3; fdouble z3 x3; fadd x3 x3 z3; fsub z3 t1 x3; fadd x3 t1 x3; fmul_by_b_coeff y3 y3
{ "checked_file": "Hacl.Impl.P256.PointAdd.fst.checked", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "LowStar.Monotonic.Buffer.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Impl.P256.Field.fsti.checked", "Hacl.Impl.P256.Bignum.fsti.check...
[]
[ "Hacl.Impl.P256.Bignum.felem", "Hacl.Impl.P256.Field.fmul_by_b_coeff", "Prims.unit", "Hacl.Impl.P256.Field.fadd", "Hacl.Impl.P256.Field.fsub", "Hacl.Impl.P256.Field.fdouble" ]
[]
module Hacl.Impl.P256.PointAdd open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack module ST = FStar.HyperStack.ST open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum open Hacl.Impl.P256.Field module S = Spec.P256 #reset-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextrac...
false
false
Hacl.Impl.P256.PointAdd.fst
{ "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...
null
val point_add_4 (x3 y3 z3 t1 t2:felem) : Stack unit (requires fun h -> live h x3 /\ live h y3 /\ live h z3 /\ live h t1 /\ live h t2 /\ LowStar.Monotonic.Buffer.all_disjoint [ loc x3; loc y3; loc z3; loc t1; loc t2 ] /\ as_nat h t1 < S.prime /\ as_nat h t2 < S.prime /\ as_nat h y3 < S.prime) (ensures f...
[]
Hacl.Impl.P256.PointAdd.point_add_4
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.PointAdd.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
x3: Hacl.Impl.P256.Bignum.felem -> y3: Hacl.Impl.P256.Bignum.felem -> z3: Hacl.Impl.P256.Bignum.felem -> t1: Hacl.Impl.P256.Bignum.felem -> t2: Hacl.Impl.P256.Bignum.felem -> FStar.HyperStack.ST.Stack Prims.unit
{ "end_col": 23, "end_line": 163, "start_col": 2, "start_line": 157 }
FStar.HyperStack.ST.Stack
val point_add_3 (x3 y3 t0 t2:felem) (p q:point) : Stack unit (requires fun h -> live h x3 /\ live h y3 /\ live h t0 /\ live h t2 /\ live h p /\ live h q /\ LowStar.Monotonic.Buffer.all_disjoint [ loc x3; loc y3; loc t0; loc t2 ] /\ eq_or_disjoint p q /\ disjoint p x3 /\ disjoint p y3 /\ disjoint p...
[ { "abbrev": true, "full_module": "Spec.P256", "short_module": "S" }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Field", "short_module": null }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Bignum", "short_module": null }, { "abbrev": false, "full_m...
false
let point_add_3 x3 y3 t0 t2 p q = let x1, z1 = getx p, getz p in let x2, z2 = getx q, getz q in fadd x3 x1 z1; fadd y3 x2 z2; fmul x3 x3 y3; fadd y3 t0 t2; fsub y3 x3 y3
val point_add_3 (x3 y3 t0 t2:felem) (p q:point) : Stack unit (requires fun h -> live h x3 /\ live h y3 /\ live h t0 /\ live h t2 /\ live h p /\ live h q /\ LowStar.Monotonic.Buffer.all_disjoint [ loc x3; loc y3; loc t0; loc t2 ] /\ eq_or_disjoint p q /\ disjoint p x3 /\ disjoint p y3 /\ disjoint p...
true
null
false
let x1, z1 = getx p, getz p in let x2, z2 = getx q, getz q in fadd x3 x1 z1; fadd y3 x2 z2; fmul x3 x3 y3; fadd y3 t0 t2; fsub y3 x3 y3
{ "checked_file": "Hacl.Impl.P256.PointAdd.fst.checked", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "LowStar.Monotonic.Buffer.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Impl.P256.Field.fsti.checked", "Hacl.Impl.P256.Bignum.fsti.check...
[]
[ "Hacl.Impl.P256.Bignum.felem", "Hacl.Impl.P256.Point.point", "Hacl.Impl.P256.Field.fsub", "Prims.unit", "Hacl.Impl.P256.Field.fadd", "Hacl.Impl.P256.Field.fmul", "FStar.Pervasives.Native.tuple2", "FStar.Pervasives.Native.Mktuple2", "Hacl.Impl.P256.Point.getz", "Hacl.Impl.P256.Point.getx" ]
[]
module Hacl.Impl.P256.PointAdd open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack module ST = FStar.HyperStack.ST open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum open Hacl.Impl.P256.Field module S = Spec.P256 #reset-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextrac...
false
false
Hacl.Impl.P256.PointAdd.fst
{ "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...
null
val point_add_3 (x3 y3 t0 t2:felem) (p q:point) : Stack unit (requires fun h -> live h x3 /\ live h y3 /\ live h t0 /\ live h t2 /\ live h p /\ live h q /\ LowStar.Monotonic.Buffer.all_disjoint [ loc x3; loc y3; loc t0; loc t2 ] /\ eq_or_disjoint p q /\ disjoint p x3 /\ disjoint p y3 /\ disjoint p...
[]
Hacl.Impl.P256.PointAdd.point_add_3
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.PointAdd.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
x3: Hacl.Impl.P256.Bignum.felem -> y3: Hacl.Impl.P256.Bignum.felem -> t0: Hacl.Impl.P256.Bignum.felem -> t2: Hacl.Impl.P256.Bignum.felem -> p: Hacl.Impl.P256.Point.point -> q: Hacl.Impl.P256.Point.point -> FStar.HyperStack.ST.Stack Prims.unit
{ "end_col": 15, "end_line": 133, "start_col": 33, "start_line": 126 }
FStar.HyperStack.ST.Stack
val point_add_7 (x3 y3 z3 t0 t1 t2 t3 t4:felem) : Stack unit (requires fun h -> live h x3 /\ live h y3 /\ live h z3 /\ live h t0 /\ live h t1 /\ live h t2 /\ live h t3 /\ live h t4 /\ LowStar.Monotonic.Buffer.all_disjoint [ loc x3; loc y3; loc z3; loc t0; loc t1; loc t2; loc t3; loc t4 ] /\ as_n...
[ { "abbrev": true, "full_module": "Spec.P256", "short_module": "S" }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Field", "short_module": null }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Bignum", "short_module": null }, { "abbrev": false, "full_m...
false
let point_add_7 x3 y3 z3 t0 t1 t2 t3 t4 = fmul y3 x3 z3; fadd y3 y3 t2; fmul x3 t3 x3; fsub x3 x3 t1; fmul z3 t4 z3; fmul t1 t3 t0; fadd z3 z3 t1
val point_add_7 (x3 y3 z3 t0 t1 t2 t3 t4:felem) : Stack unit (requires fun h -> live h x3 /\ live h y3 /\ live h z3 /\ live h t0 /\ live h t1 /\ live h t2 /\ live h t3 /\ live h t4 /\ LowStar.Monotonic.Buffer.all_disjoint [ loc x3; loc y3; loc z3; loc t0; loc t1; loc t2; loc t3; loc t4 ] /\ as_n...
true
null
false
fmul y3 x3 z3; fadd y3 y3 t2; fmul x3 t3 x3; fsub x3 x3 t1; fmul z3 t4 z3; fmul t1 t3 t0; fadd z3 z3 t1
{ "checked_file": "Hacl.Impl.P256.PointAdd.fst.checked", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "LowStar.Monotonic.Buffer.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Impl.P256.Field.fsti.checked", "Hacl.Impl.P256.Bignum.fsti.check...
[]
[ "Hacl.Impl.P256.Bignum.felem", "Hacl.Impl.P256.Field.fadd", "Prims.unit", "Hacl.Impl.P256.Field.fmul", "Hacl.Impl.P256.Field.fsub" ]
[]
module Hacl.Impl.P256.PointAdd open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack module ST = FStar.HyperStack.ST open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum open Hacl.Impl.P256.Field module S = Spec.P256 #reset-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextrac...
false
false
Hacl.Impl.P256.PointAdd.fst
{ "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...
null
val point_add_7 (x3 y3 z3 t0 t1 t2 t3 t4:felem) : Stack unit (requires fun h -> live h x3 /\ live h y3 /\ live h z3 /\ live h t0 /\ live h t1 /\ live h t2 /\ live h t3 /\ live h t4 /\ LowStar.Monotonic.Buffer.all_disjoint [ loc x3; loc y3; loc z3; loc t0; loc t1; loc t2; loc t3; loc t4 ] /\ as_n...
[]
Hacl.Impl.P256.PointAdd.point_add_7
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.PointAdd.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
x3: Hacl.Impl.P256.Bignum.felem -> y3: Hacl.Impl.P256.Bignum.felem -> z3: Hacl.Impl.P256.Bignum.felem -> t0: Hacl.Impl.P256.Bignum.felem -> t1: Hacl.Impl.P256.Bignum.felem -> t2: Hacl.Impl.P256.Bignum.felem -> t3: Hacl.Impl.P256.Bignum.felem -> t4: Hacl.Impl.P256.Bignum.felem -> FStar...
{ "end_col": 15, "end_line": 268, "start_col": 2, "start_line": 262 }
FStar.HyperStack.ST.Stack
val point_add_2 (t1 t2 t3 t4 t5:felem) (p q:point) : Stack unit (requires fun h -> live h t1 /\ live h t2 /\ live h t3 /\ live h t4 /\ live h t5 /\ live h p /\ live h q /\ LowStar.Monotonic.Buffer.all_disjoint [ loc t1; loc t2; loc t3; loc t4; loc t5 ] /\ eq_or_disjoint p q /\ disjoint p t1 /\ disjoin...
[ { "abbrev": true, "full_module": "Spec.P256", "short_module": "S" }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Field", "short_module": null }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Bignum", "short_module": null }, { "abbrev": false, "full_m...
false
let point_add_2 t1 t2 t3 t4 t5 p q = let y1, z1 = gety p, getz p in let y2, z2 = gety q, getz q in fsub t3 t3 t4; fadd t4 y1 z1; fadd t5 y2 z2; fmul t4 t4 t5; fadd t5 t1 t2; fsub t4 t4 t5
val point_add_2 (t1 t2 t3 t4 t5:felem) (p q:point) : Stack unit (requires fun h -> live h t1 /\ live h t2 /\ live h t3 /\ live h t4 /\ live h t5 /\ live h p /\ live h q /\ LowStar.Monotonic.Buffer.all_disjoint [ loc t1; loc t2; loc t3; loc t4; loc t5 ] /\ eq_or_disjoint p q /\ disjoint p t1 /\ disjoin...
true
null
false
let y1, z1 = gety p, getz p in let y2, z2 = gety q, getz q in fsub t3 t3 t4; fadd t4 y1 z1; fadd t5 y2 z2; fmul t4 t4 t5; fadd t5 t1 t2; fsub t4 t4 t5
{ "checked_file": "Hacl.Impl.P256.PointAdd.fst.checked", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "LowStar.Monotonic.Buffer.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Impl.P256.Field.fsti.checked", "Hacl.Impl.P256.Bignum.fsti.check...
[]
[ "Hacl.Impl.P256.Bignum.felem", "Hacl.Impl.P256.Point.point", "Hacl.Impl.P256.Field.fsub", "Prims.unit", "Hacl.Impl.P256.Field.fadd", "Hacl.Impl.P256.Field.fmul", "FStar.Pervasives.Native.tuple2", "FStar.Pervasives.Native.Mktuple2", "Hacl.Impl.P256.Point.getz", "Hacl.Impl.P256.Point.gety" ]
[]
module Hacl.Impl.P256.PointAdd open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack module ST = FStar.HyperStack.ST open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum open Hacl.Impl.P256.Field module S = Spec.P256 #reset-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextrac...
false
false
Hacl.Impl.P256.PointAdd.fst
{ "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...
null
val point_add_2 (t1 t2 t3 t4 t5:felem) (p q:point) : Stack unit (requires fun h -> live h t1 /\ live h t2 /\ live h t3 /\ live h t4 /\ live h t5 /\ live h p /\ live h q /\ LowStar.Monotonic.Buffer.all_disjoint [ loc t1; loc t2; loc t3; loc t4; loc t5 ] /\ eq_or_disjoint p q /\ disjoint p t1 /\ disjoin...
[]
Hacl.Impl.P256.PointAdd.point_add_2
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.PointAdd.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
t1: Hacl.Impl.P256.Bignum.felem -> t2: Hacl.Impl.P256.Bignum.felem -> t3: Hacl.Impl.P256.Bignum.felem -> t4: Hacl.Impl.P256.Bignum.felem -> t5: Hacl.Impl.P256.Bignum.felem -> p: Hacl.Impl.P256.Point.point -> q: Hacl.Impl.P256.Point.point -> FStar.HyperStack.ST.Stack Prims.unit
{ "end_col": 15, "end_line": 99, "start_col": 36, "start_line": 91 }
FStar.HyperStack.ST.Stack
val point_add_6 (x3 y3 z3 t0 t1 t2 t4:felem) : Stack unit (requires fun h -> live h x3 /\ live h y3 /\ live h z3 /\ live h t0 /\ live h t1 /\ live h t2 /\ live h t4 /\ LowStar.Monotonic.Buffer.all_disjoint [ loc x3; loc y3; loc z3; loc t0; loc t1; loc t2; loc t4 ] /\ as_nat h y3 < S.prime /\ as_...
[ { "abbrev": true, "full_module": "Spec.P256", "short_module": "S" }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Field", "short_module": null }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Bignum", "short_module": null }, { "abbrev": false, "full_m...
false
let point_add_6 x3 y3 z3 t0 t1 t2 t4 = fadd y3 t1 y3; fdouble t1 t0; fadd t0 t1 t0; fsub t0 t0 t2; fmul t1 t4 y3; fmul t2 t0 y3
val point_add_6 (x3 y3 z3 t0 t1 t2 t4:felem) : Stack unit (requires fun h -> live h x3 /\ live h y3 /\ live h z3 /\ live h t0 /\ live h t1 /\ live h t2 /\ live h t4 /\ LowStar.Monotonic.Buffer.all_disjoint [ loc x3; loc y3; loc z3; loc t0; loc t1; loc t2; loc t4 ] /\ as_nat h y3 < S.prime /\ as_...
true
null
false
fadd y3 t1 y3; fdouble t1 t0; fadd t0 t1 t0; fsub t0 t0 t2; fmul t1 t4 y3; fmul t2 t0 y3
{ "checked_file": "Hacl.Impl.P256.PointAdd.fst.checked", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "LowStar.Monotonic.Buffer.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Impl.P256.Field.fsti.checked", "Hacl.Impl.P256.Bignum.fsti.check...
[]
[ "Hacl.Impl.P256.Bignum.felem", "Hacl.Impl.P256.Field.fmul", "Prims.unit", "Hacl.Impl.P256.Field.fsub", "Hacl.Impl.P256.Field.fadd", "Hacl.Impl.P256.Field.fdouble" ]
[]
module Hacl.Impl.P256.PointAdd open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack module ST = FStar.HyperStack.ST open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum open Hacl.Impl.P256.Field module S = Spec.P256 #reset-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextrac...
false
false
Hacl.Impl.P256.PointAdd.fst
{ "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...
null
val point_add_6 (x3 y3 z3 t0 t1 t2 t4:felem) : Stack unit (requires fun h -> live h x3 /\ live h y3 /\ live h z3 /\ live h t0 /\ live h t1 /\ live h t2 /\ live h t4 /\ LowStar.Monotonic.Buffer.all_disjoint [ loc x3; loc y3; loc z3; loc t0; loc t1; loc t2; loc t4 ] /\ as_nat h y3 < S.prime /\ as_...
[]
Hacl.Impl.P256.PointAdd.point_add_6
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.PointAdd.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
x3: Hacl.Impl.P256.Bignum.felem -> y3: Hacl.Impl.P256.Bignum.felem -> z3: Hacl.Impl.P256.Bignum.felem -> t0: Hacl.Impl.P256.Bignum.felem -> t1: Hacl.Impl.P256.Bignum.felem -> t2: Hacl.Impl.P256.Bignum.felem -> t4: Hacl.Impl.P256.Bignum.felem -> FStar.HyperStack.ST.Stack Prims.unit
{ "end_col": 15, "end_line": 228, "start_col": 2, "start_line": 223 }
FStar.HyperStack.ST.Stack
val point_add_1 (t0 t1 t2 t3 t4:felem) (p q:point) : Stack unit (requires fun h -> live h t0 /\ live h t1 /\ live h t2 /\ live h t3 /\ live h t4 /\ live h p /\ live h q /\ LowStar.Monotonic.Buffer.all_disjoint [loc t0; loc t1; loc t2; loc t3; loc t4 ] /\ eq_or_disjoint p q /\ disjoint p t0 /\ di...
[ { "abbrev": true, "full_module": "Spec.P256", "short_module": "S" }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Field", "short_module": null }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Bignum", "short_module": null }, { "abbrev": false, "full_m...
false
let point_add_1 t0 t1 t2 t3 t4 p q = let x1, y1, z1 = getx p, gety p, getz p in let x2, y2, z2 = getx q, gety q, getz q in fmul t0 x1 x2; fmul t1 y1 y2; fmul t2 z1 z2; fadd t3 x1 y1; fadd t4 x2 y2; fmul t3 t3 t4; fadd t4 t0 t1
val point_add_1 (t0 t1 t2 t3 t4:felem) (p q:point) : Stack unit (requires fun h -> live h t0 /\ live h t1 /\ live h t2 /\ live h t3 /\ live h t4 /\ live h p /\ live h q /\ LowStar.Monotonic.Buffer.all_disjoint [loc t0; loc t1; loc t2; loc t3; loc t4 ] /\ eq_or_disjoint p q /\ disjoint p t0 /\ di...
true
null
false
let x1, y1, z1 = getx p, gety p, getz p in let x2, y2, z2 = getx q, gety q, getz q in fmul t0 x1 x2; fmul t1 y1 y2; fmul t2 z1 z2; fadd t3 x1 y1; fadd t4 x2 y2; fmul t3 t3 t4; fadd t4 t0 t1
{ "checked_file": "Hacl.Impl.P256.PointAdd.fst.checked", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "LowStar.Monotonic.Buffer.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Impl.P256.Field.fsti.checked", "Hacl.Impl.P256.Bignum.fsti.check...
[]
[ "Hacl.Impl.P256.Bignum.felem", "Hacl.Impl.P256.Point.point", "Hacl.Impl.P256.Field.fadd", "Prims.unit", "Hacl.Impl.P256.Field.fmul", "FStar.Pervasives.Native.tuple3", "FStar.Pervasives.Native.Mktuple3", "Hacl.Impl.P256.Point.getz", "Hacl.Impl.P256.Point.gety", "Hacl.Impl.P256.Point.getx" ]
[]
module Hacl.Impl.P256.PointAdd open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack module ST = FStar.HyperStack.ST open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum open Hacl.Impl.P256.Field module S = Spec.P256 #reset-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextrac...
false
false
Hacl.Impl.P256.PointAdd.fst
{ "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...
null
val point_add_1 (t0 t1 t2 t3 t4:felem) (p q:point) : Stack unit (requires fun h -> live h t0 /\ live h t1 /\ live h t2 /\ live h t3 /\ live h t4 /\ live h p /\ live h q /\ LowStar.Monotonic.Buffer.all_disjoint [loc t0; loc t1; loc t2; loc t3; loc t4 ] /\ eq_or_disjoint p q /\ disjoint p t0 /\ di...
[]
Hacl.Impl.P256.PointAdd.point_add_1
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.PointAdd.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
t0: Hacl.Impl.P256.Bignum.felem -> t1: Hacl.Impl.P256.Bignum.felem -> t2: Hacl.Impl.P256.Bignum.felem -> t3: Hacl.Impl.P256.Bignum.felem -> t4: Hacl.Impl.P256.Bignum.felem -> p: Hacl.Impl.P256.Point.point -> q: Hacl.Impl.P256.Point.point -> FStar.HyperStack.ST.Stack Prims.unit
{ "end_col": 15, "end_line": 57, "start_col": 36, "start_line": 48 }
FStar.HyperStack.ST.Stack
val point_add_5 (x3 y3 z3 t0 t1 t2:felem) : Stack unit (requires fun h -> live h x3 /\ live h y3 /\ live h z3 /\ live h t0 /\ live h t1 /\ live h t2 /\ LowStar.Monotonic.Buffer.all_disjoint [ loc x3; loc y3; loc z3; loc t0; loc t1; loc t2 ] /\ as_nat h y3 < S.prime /\ as_nat h t0 < S.prime /\ as_n...
[ { "abbrev": true, "full_module": "Spec.P256", "short_module": "S" }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Field", "short_module": null }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Bignum", "short_module": null }, { "abbrev": false, "full_m...
false
let point_add_5 x3 y3 z3 t0 t1 t2 = fdouble t1 t2; fadd t2 t1 t2; fsub y3 y3 t2; fsub y3 y3 t0; fdouble t1 y3
val point_add_5 (x3 y3 z3 t0 t1 t2:felem) : Stack unit (requires fun h -> live h x3 /\ live h y3 /\ live h z3 /\ live h t0 /\ live h t1 /\ live h t2 /\ LowStar.Monotonic.Buffer.all_disjoint [ loc x3; loc y3; loc z3; loc t0; loc t1; loc t2 ] /\ as_nat h y3 < S.prime /\ as_nat h t0 < S.prime /\ as_n...
true
null
false
fdouble t1 t2; fadd t2 t1 t2; fsub y3 y3 t2; fsub y3 y3 t0; fdouble t1 y3
{ "checked_file": "Hacl.Impl.P256.PointAdd.fst.checked", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "LowStar.Monotonic.Buffer.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Impl.P256.Field.fsti.checked", "Hacl.Impl.P256.Bignum.fsti.check...
[]
[ "Hacl.Impl.P256.Bignum.felem", "Hacl.Impl.P256.Field.fdouble", "Prims.unit", "Hacl.Impl.P256.Field.fsub", "Hacl.Impl.P256.Field.fadd" ]
[]
module Hacl.Impl.P256.PointAdd open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack module ST = FStar.HyperStack.ST open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum open Hacl.Impl.P256.Field module S = Spec.P256 #reset-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextrac...
false
false
Hacl.Impl.P256.PointAdd.fst
{ "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...
null
val point_add_5 (x3 y3 z3 t0 t1 t2:felem) : Stack unit (requires fun h -> live h x3 /\ live h y3 /\ live h z3 /\ live h t0 /\ live h t1 /\ live h t2 /\ LowStar.Monotonic.Buffer.all_disjoint [ loc x3; loc y3; loc z3; loc t0; loc t1; loc t2 ] /\ as_nat h y3 < S.prime /\ as_nat h t0 < S.prime /\ as_n...
[]
Hacl.Impl.P256.PointAdd.point_add_5
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.PointAdd.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
x3: Hacl.Impl.P256.Bignum.felem -> y3: Hacl.Impl.P256.Bignum.felem -> z3: Hacl.Impl.P256.Bignum.felem -> t0: Hacl.Impl.P256.Bignum.felem -> t1: Hacl.Impl.P256.Bignum.felem -> t2: Hacl.Impl.P256.Bignum.felem -> FStar.HyperStack.ST.Stack Prims.unit
{ "end_col": 15, "end_line": 192, "start_col": 2, "start_line": 188 }
FStar.HyperStack.ST.Stack
val point_add_noalloc: tmp:lbuffer uint64 24ul -> res:point -> p:point -> q:point -> Stack unit (requires fun h -> live h p /\ live h q /\ live h res /\ live h tmp /\ eq_or_disjoint p q /\ disjoint q res /\ disjoint p res /\ disjoint tmp p /\ disjoint tmp q /\ disjoint tmp res /\ point_inv h p /\ poin...
[ { "abbrev": true, "full_module": "Spec.P256", "short_module": "S" }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Field", "short_module": null }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Bignum", "short_module": null }, { "abbrev": false, "full_m...
false
let point_add_noalloc tmp res p q = let x3, y3, z3 = getx res, gety res, getz res in let t0 = sub tmp 0ul 4ul in let t1 = sub tmp 4ul 4ul in let t2 = sub tmp 8ul 4ul in let t3 = sub tmp 12ul 4ul in let t4 = sub tmp 16ul 4ul in let t5 = sub tmp 20ul 4ul in point_add_1 t0 t1 t2 t3 t4 p q; point_add_2 t1...
val point_add_noalloc: tmp:lbuffer uint64 24ul -> res:point -> p:point -> q:point -> Stack unit (requires fun h -> live h p /\ live h q /\ live h res /\ live h tmp /\ eq_or_disjoint p q /\ disjoint q res /\ disjoint p res /\ disjoint tmp p /\ disjoint tmp q /\ disjoint tmp res /\ point_inv h p /\ poin...
true
null
false
let x3, y3, z3 = getx res, gety res, getz res in let t0 = sub tmp 0ul 4ul in let t1 = sub tmp 4ul 4ul in let t2 = sub tmp 8ul 4ul in let t3 = sub tmp 12ul 4ul in let t4 = sub tmp 16ul 4ul in let t5 = sub tmp 20ul 4ul in point_add_1 t0 t1 t2 t3 t4 p q; point_add_2 t1 t2 t3 t4 t5 p q; point_add_3 x3 y3 t0 t2 p q; point_a...
{ "checked_file": "Hacl.Impl.P256.PointAdd.fst.checked", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "LowStar.Monotonic.Buffer.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Impl.P256.Field.fsti.checked", "Hacl.Impl.P256.Bignum.fsti.check...
[]
[ "Lib.Buffer.lbuffer", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Hacl.Impl.P256.Point.point", "Hacl.Impl.P256.Bignum.felem", "Hacl.Impl.P256.PointAdd.point_add_7", "Prims.unit", "Hacl.Impl.P256.PointAdd.point_add_6", "Hacl.Impl.P256.PointAdd.point_add_5", "Hacl.Impl.P256.PointAdd.point_ad...
[]
module Hacl.Impl.P256.PointAdd open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack module ST = FStar.HyperStack.ST open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum open Hacl.Impl.P256.Field module S = Spec.P256 #reset-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextrac...
false
false
Hacl.Impl.P256.PointAdd.fst
{ "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...
null
val point_add_noalloc: tmp:lbuffer uint64 24ul -> res:point -> p:point -> q:point -> Stack unit (requires fun h -> live h p /\ live h q /\ live h res /\ live h tmp /\ eq_or_disjoint p q /\ disjoint q res /\ disjoint p res /\ disjoint tmp p /\ disjoint tmp q /\ disjoint tmp res /\ point_inv h p /\ poin...
[]
Hacl.Impl.P256.PointAdd.point_add_noalloc
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.PointAdd.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
tmp: Lib.Buffer.lbuffer Lib.IntTypes.uint64 24ul -> res: Hacl.Impl.P256.Point.point -> p: Hacl.Impl.P256.Point.point -> q: Hacl.Impl.P256.Point.point -> FStar.HyperStack.ST.Stack Prims.unit
{ "end_col": 37, "end_line": 297, "start_col": 35, "start_line": 283 }
FStar.HyperStack.ST.Stack
val point_add: res:point -> p:point -> q:point -> Stack unit (requires fun h -> live h p /\ live h q /\ live h res /\ eq_or_disjoint p q /\ eq_or_disjoint q res /\ eq_or_disjoint p res /\ point_inv h p /\ point_inv h q) (ensures fun h0 _ h1 -> modifies (loc res) h0 h1 /\ point_inv h1 res /\ from...
[ { "abbrev": false, "full_module": "Hacl.Impl.P256.Field", "short_module": null }, { "abbrev": false, "full_module": "Hacl.Impl.P256.Bignum", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": true, "full_...
false
let point_add res p q = push_frame (); let tmp = create 36ul (u64 0) in let t0 = sub tmp 0ul 24ul in let t1 = sub tmp 24ul 12ul in point_add_noalloc t0 t1 p q; copy res t1; pop_frame ()
val point_add: res:point -> p:point -> q:point -> Stack unit (requires fun h -> live h p /\ live h q /\ live h res /\ eq_or_disjoint p q /\ eq_or_disjoint q res /\ eq_or_disjoint p res /\ point_inv h p /\ point_inv h q) (ensures fun h0 _ h1 -> modifies (loc res) h0 h1 /\ point_inv h1 res /\ from...
true
null
false
push_frame (); let tmp = create 36ul (u64 0) in let t0 = sub tmp 0ul 24ul in let t1 = sub tmp 24ul 12ul in point_add_noalloc t0 t1 p q; copy res t1; pop_frame ()
{ "checked_file": "Hacl.Impl.P256.PointAdd.fst.checked", "dependencies": [ "Spec.P256.fst.checked", "prims.fst.checked", "LowStar.Monotonic.Buffer.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Impl.P256.Field.fsti.checked", "Hacl.Impl.P256.Bignum.fsti.check...
[]
[ "Hacl.Impl.P256.Point.point", "FStar.HyperStack.ST.pop_frame", "Prims.unit", "Lib.Buffer.copy", "Lib.Buffer.MUT", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Hacl.Impl.P256.PointAdd.point_add_noalloc", "Lib.Buffer.lbuffer_t", "Lib.IntTypes.int_t", "Lib.IntTypes.U64", "Lib.IntTypes.SEC"...
[]
module Hacl.Impl.P256.PointAdd open FStar.Mul open FStar.HyperStack.All open FStar.HyperStack module ST = FStar.HyperStack.ST open Lib.IntTypes open Lib.Buffer open Hacl.Impl.P256.Bignum open Hacl.Impl.P256.Field module S = Spec.P256 #reset-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextrac...
false
false
Hacl.Impl.P256.PointAdd.fst
{ "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...
null
val point_add: res:point -> p:point -> q:point -> Stack unit (requires fun h -> live h p /\ live h q /\ live h res /\ eq_or_disjoint p q /\ eq_or_disjoint q res /\ eq_or_disjoint p res /\ point_inv h p /\ point_inv h q) (ensures fun h0 _ h1 -> modifies (loc res) h0 h1 /\ point_inv h1 res /\ from...
[]
Hacl.Impl.P256.PointAdd.point_add
{ "file_name": "code/ecdsap256/Hacl.Impl.P256.PointAdd.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
res: Hacl.Impl.P256.Point.point -> p: Hacl.Impl.P256.Point.point -> q: Hacl.Impl.P256.Point.point -> FStar.HyperStack.ST.Stack Prims.unit
{ "end_col": 14, "end_line": 308, "start_col": 2, "start_line": 302 }
Prims.Tot
[ { "abbrev": true, "full_module": "Hacl.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Spec.RSAPSS", "short_module": "S" }, { "abbrev": true, "full_module": "Spec.Agile.Hash", "short_module": "Hash" }, { "abbrev": true, "full_mod...
false
let msg_len_t (a:Hash.fixed_len_alg) = msgLen:size_t{v msgLen `less_than_max_input_length` a}
let msg_len_t (a: Hash.fixed_len_alg) =
false
null
false
msgLen: size_t{(v msgLen) `less_than_max_input_length` a}
{ "checked_file": "Hacl.Impl.RSAPSS.Padding.fst.checked", "dependencies": [ "Spec.RSAPSS.fst.checked", "Spec.Hash.Definitions.fst.checked", "Spec.Agile.Hash.fsti.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.RawIntTypes.fsti.checked", "Lib.IntTypes.fsti.checked", "...
[ "total" ]
[ "Spec.Hash.Definitions.fixed_len_alg", "Lib.IntTypes.size_t", "Prims.b2t", "Hacl.Impl.RSAPSS.Padding.less_than_max_input_length", "Lib.IntTypes.v", "Lib.IntTypes.U32", "Lib.IntTypes.PUB" ]
[]
module Hacl.Impl.RSAPSS.Padding open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer open Hacl.Impl.RSAPSS.MGF module ST = FStar.HyperStack.ST module LSeq = Lib.Sequence module Hash = Spec.Agile.Hash module S = Spec.RSAPSS module BD = Hacl.Bignum.Definitions #reset-opti...
false
true
Hacl.Impl.RSAPSS.Padding.fst
{ "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...
null
val msg_len_t : a: Spec.Hash.Definitions.fixed_len_alg -> Type0
[]
Hacl.Impl.RSAPSS.Padding.msg_len_t
{ "file_name": "code/rsapss/Hacl.Impl.RSAPSS.Padding.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Hash.Definitions.fixed_len_alg -> Type0
{ "end_col": 56, "end_line": 31, "start_col": 2, "start_line": 31 }
Prims.Tot
[ { "abbrev": true, "full_module": "Hacl.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Spec.RSAPSS", "short_module": "S" }, { "abbrev": true, "full_module": "Spec.Agile.Hash", "short_module": "Hash" }, { "abbrev": true, "full_mod...
false
let less_than_max_input_length = Spec.Hash.Definitions.less_than_max_input_length
let less_than_max_input_length =
false
null
false
Spec.Hash.Definitions.less_than_max_input_length
{ "checked_file": "Hacl.Impl.RSAPSS.Padding.fst.checked", "dependencies": [ "Spec.RSAPSS.fst.checked", "Spec.Hash.Definitions.fst.checked", "Spec.Agile.Hash.fsti.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.RawIntTypes.fsti.checked", "Lib.IntTypes.fsti.checked", "...
[ "total" ]
[ "Spec.Hash.Definitions.less_than_max_input_length" ]
[]
module Hacl.Impl.RSAPSS.Padding open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer open Hacl.Impl.RSAPSS.MGF module ST = FStar.HyperStack.ST module LSeq = Lib.Sequence module Hash = Spec.Agile.Hash module S = Spec.RSAPSS module BD = Hacl.Bignum.Definitions #reset-opti...
false
true
Hacl.Impl.RSAPSS.Padding.fst
{ "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...
null
val less_than_max_input_length : l: Prims.int -> a: Spec.Hash.Definitions.hash_alg -> Prims.bool
[]
Hacl.Impl.RSAPSS.Padding.less_than_max_input_length
{ "file_name": "code/rsapss/Hacl.Impl.RSAPSS.Padding.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
l: Prims.int -> a: Spec.Hash.Definitions.hash_alg -> Prims.bool
{ "end_col": 81, "end_line": 23, "start_col": 33, "start_line": 23 }
Prims.Tot
[ { "abbrev": true, "full_module": "Hacl.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Spec.RSAPSS", "short_module": "S" }, { "abbrev": true, "full_module": "Spec.Agile.Hash", "short_module": "Hash" }, { "abbrev": true, "full_mod...
false
let salt_len_t (a:Hash.fixed_len_alg) = saltLen:size_t{8 + Hash.hash_length a + v saltLen <= max_size_t /\ (8 + Hash.hash_length a + v saltLen) `less_than_max_input_length` a}
let salt_len_t (a: Hash.fixed_len_alg) =
false
null
false
saltLen: size_t { 8 + Hash.hash_length a + v saltLen <= max_size_t /\ (8 + Hash.hash_length a + v saltLen) `less_than_max_input_length` a }
{ "checked_file": "Hacl.Impl.RSAPSS.Padding.fst.checked", "dependencies": [ "Spec.RSAPSS.fst.checked", "Spec.Hash.Definitions.fst.checked", "Spec.Agile.Hash.fsti.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.RawIntTypes.fsti.checked", "Lib.IntTypes.fsti.checked", "...
[ "total" ]
[ "Spec.Hash.Definitions.fixed_len_alg", "Lib.IntTypes.size_t", "Prims.l_and", "Prims.b2t", "Prims.op_LessThanOrEqual", "Prims.op_Addition", "Spec.Hash.Definitions.hash_length", "Lib.IntTypes.v", "Lib.IntTypes.U32", "Lib.IntTypes.PUB", "Lib.IntTypes.max_size_t", "Hacl.Impl.RSAPSS.Padding.less_th...
[]
module Hacl.Impl.RSAPSS.Padding open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer open Hacl.Impl.RSAPSS.MGF module ST = FStar.HyperStack.ST module LSeq = Lib.Sequence module Hash = Spec.Agile.Hash module S = Spec.RSAPSS module BD = Hacl.Bignum.Definitions #reset-opti...
false
true
Hacl.Impl.RSAPSS.Padding.fst
{ "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...
null
val salt_len_t : a: Spec.Hash.Definitions.fixed_len_alg -> Type0
[]
Hacl.Impl.RSAPSS.Padding.salt_len_t
{ "file_name": "code/rsapss/Hacl.Impl.RSAPSS.Padding.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Hash.Definitions.fixed_len_alg -> Type0
{ "end_col": 137, "end_line": 27, "start_col": 2, "start_line": 27 }
Prims.Tot
[ { "abbrev": true, "full_module": "Hacl.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Spec.RSAPSS", "short_module": "S" }, { "abbrev": true, "full_module": "Spec.Agile.Hash", "short_module": "Hash" }, { "abbrev": true, "full_mod...
false
let em_len_t (a:Hash.fixed_len_alg) (saltLen:salt_len_t a) = emBits:size_t{0 < v emBits /\ Hash.hash_length a + v saltLen + 2 <= S.blocks (v emBits) 8}
let em_len_t (a: Hash.fixed_len_alg) (saltLen: salt_len_t a) =
false
null
false
emBits: size_t{0 < v emBits /\ Hash.hash_length a + v saltLen + 2 <= S.blocks (v emBits) 8}
{ "checked_file": "Hacl.Impl.RSAPSS.Padding.fst.checked", "dependencies": [ "Spec.RSAPSS.fst.checked", "Spec.Hash.Definitions.fst.checked", "Spec.Agile.Hash.fsti.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.RawIntTypes.fsti.checked", "Lib.IntTypes.fsti.checked", "...
[ "total" ]
[ "Spec.Hash.Definitions.fixed_len_alg", "Hacl.Impl.RSAPSS.Padding.salt_len_t", "Lib.IntTypes.size_t", "Prims.l_and", "Prims.b2t", "Prims.op_LessThan", "Lib.IntTypes.v", "Lib.IntTypes.U32", "Lib.IntTypes.PUB", "Prims.op_LessThanOrEqual", "Prims.op_Addition", "Spec.Hash.Definitions.hash_length", ...
[]
module Hacl.Impl.RSAPSS.Padding open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer open Hacl.Impl.RSAPSS.MGF module ST = FStar.HyperStack.ST module LSeq = Lib.Sequence module Hash = Spec.Agile.Hash module S = Spec.RSAPSS module BD = Hacl.Bignum.Definitions #reset-opti...
false
false
Hacl.Impl.RSAPSS.Padding.fst
{ "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...
null
val em_len_t : a: Spec.Hash.Definitions.fixed_len_alg -> saltLen: Hacl.Impl.RSAPSS.Padding.salt_len_t a -> Type0
[]
Hacl.Impl.RSAPSS.Padding.em_len_t
{ "file_name": "code/rsapss/Hacl.Impl.RSAPSS.Padding.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Hash.Definitions.fixed_len_alg -> saltLen: Hacl.Impl.RSAPSS.Padding.salt_len_t a -> Type0
{ "end_col": 92, "end_line": 35, "start_col": 2, "start_line": 35 }
FStar.HyperStack.ST.Stack
val xor_bytes: len:size_t{v len > 0} -> b1:lbuffer uint8 len -> b2:lbuffer uint8 len -> Stack unit (requires fun h -> live h b1 /\ live h b2 /\ disjoint b1 b2) (ensures fun h0 _ h1 -> modifies (loc b1) h0 h1 /\ as_seq h1 b1 == S.xor_bytes (as_seq h0 b1) (as_seq h0 b2))
[ { "abbrev": true, "full_module": "Hacl.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Spec.RSAPSS", "short_module": "S" }, { "abbrev": true, "full_module": "Spec.Agile.Hash", "short_module": "Hash" }, { "abbrev": true, "full_mod...
false
let xor_bytes len b1 b2 = map2T len b1 (fun x y -> x ^. y) b1 b2
val xor_bytes: len:size_t{v len > 0} -> b1:lbuffer uint8 len -> b2:lbuffer uint8 len -> Stack unit (requires fun h -> live h b1 /\ live h b2 /\ disjoint b1 b2) (ensures fun h0 _ h1 -> modifies (loc b1) h0 h1 /\ as_seq h1 b1 == S.xor_bytes (as_seq h0 b1) (as_seq h0 b2)) let xor_bytes len b1 b2 =
true
null
false
map2T len b1 (fun x y -> x ^. y) b1 b2
{ "checked_file": "Hacl.Impl.RSAPSS.Padding.fst.checked", "dependencies": [ "Spec.RSAPSS.fst.checked", "Spec.Hash.Definitions.fst.checked", "Spec.Agile.Hash.fsti.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.RawIntTypes.fsti.checked", "Lib.IntTypes.fsti.checked", "...
[]
[ "Lib.IntTypes.size_t", "Prims.b2t", "Prims.op_GreaterThan", "Lib.IntTypes.v", "Lib.IntTypes.U32", "Lib.IntTypes.PUB", "Lib.Buffer.lbuffer", "Lib.IntTypes.uint8", "Lib.Buffer.map2T", "Lib.Buffer.MUT", "Lib.IntTypes.int_t", "Lib.IntTypes.U8", "Lib.IntTypes.SEC", "Lib.IntTypes.op_Hat_Dot", ...
[]
module Hacl.Impl.RSAPSS.Padding open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer open Hacl.Impl.RSAPSS.MGF module ST = FStar.HyperStack.ST module LSeq = Lib.Sequence module Hash = Spec.Agile.Hash module S = Spec.RSAPSS module BD = Hacl.Bignum.Definitions #reset-opti...
false
false
Hacl.Impl.RSAPSS.Padding.fst
{ "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...
null
val xor_bytes: len:size_t{v len > 0} -> b1:lbuffer uint8 len -> b2:lbuffer uint8 len -> Stack unit (requires fun h -> live h b1 /\ live h b2 /\ disjoint b1 b2) (ensures fun h0 _ h1 -> modifies (loc b1) h0 h1 /\ as_seq h1 b1 == S.xor_bytes (as_seq h0 b1) (as_seq h0 b2))
[]
Hacl.Impl.RSAPSS.Padding.xor_bytes
{ "file_name": "code/rsapss/Hacl.Impl.RSAPSS.Padding.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
len: Lib.IntTypes.size_t{Lib.IntTypes.v len > 0} -> b1: Lib.Buffer.lbuffer Lib.IntTypes.uint8 len -> b2: Lib.Buffer.lbuffer Lib.IntTypes.uint8 len -> FStar.HyperStack.ST.Stack Prims.unit
{ "end_col": 40, "end_line": 49, "start_col": 2, "start_line": 49 }
FStar.HyperStack.ST.Stack
val db_zero: len:size_t{v len > 0} -> db:lbuffer uint8 len -> emBits:size_t -> Stack unit (requires fun h -> live h db) (ensures fun h0 _ h1 -> modifies (loc db) h0 h1 /\ as_seq h1 db == S.db_zero #(v len) (as_seq h0 db) (v emBits))
[ { "abbrev": true, "full_module": "Hacl.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Spec.RSAPSS", "short_module": "S" }, { "abbrev": true, "full_module": "Spec.Agile.Hash", "short_module": "Hash" }, { "abbrev": true, "full_mod...
false
let db_zero len db emBits = let msBits = emBits %. 8ul in if msBits >. 0ul then db.(0ul) <- db.(0ul) &. (u8 0xff >>. (8ul -. msBits))
val db_zero: len:size_t{v len > 0} -> db:lbuffer uint8 len -> emBits:size_t -> Stack unit (requires fun h -> live h db) (ensures fun h0 _ h1 -> modifies (loc db) h0 h1 /\ as_seq h1 db == S.db_zero #(v len) (as_seq h0 db) (v emBits)) let db_zero len db emBits =
true
null
false
let msBits = emBits %. 8ul in if msBits >. 0ul then db.(0ul) <- db.(0ul) &. (u8 0xff >>. (8ul -. msBits))
{ "checked_file": "Hacl.Impl.RSAPSS.Padding.fst.checked", "dependencies": [ "Spec.RSAPSS.fst.checked", "Spec.Hash.Definitions.fst.checked", "Spec.Agile.Hash.fsti.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.RawIntTypes.fsti.checked", "Lib.IntTypes.fsti.checked", "...
[]
[ "Lib.IntTypes.size_t", "Prims.b2t", "Prims.op_GreaterThan", "Lib.IntTypes.v", "Lib.IntTypes.U32", "Lib.IntTypes.PUB", "Lib.Buffer.lbuffer", "Lib.IntTypes.uint8", "Lib.IntTypes.op_Greater_Dot", "FStar.UInt32.__uint_to_t", "Lib.Buffer.op_Array_Assignment", "Prims.unit", "Lib.IntTypes.int_t", ...
[]
module Hacl.Impl.RSAPSS.Padding open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer open Hacl.Impl.RSAPSS.MGF module ST = FStar.HyperStack.ST module LSeq = Lib.Sequence module Hash = Spec.Agile.Hash module S = Spec.RSAPSS module BD = Hacl.Bignum.Definitions #reset-opti...
false
false
Hacl.Impl.RSAPSS.Padding.fst
{ "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...
null
val db_zero: len:size_t{v len > 0} -> db:lbuffer uint8 len -> emBits:size_t -> Stack unit (requires fun h -> live h db) (ensures fun h0 _ h1 -> modifies (loc db) h0 h1 /\ as_seq h1 db == S.db_zero #(v len) (as_seq h0 db) (v emBits))
[]
Hacl.Impl.RSAPSS.Padding.db_zero
{ "file_name": "code/rsapss/Hacl.Impl.RSAPSS.Padding.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
len: Lib.IntTypes.size_t{Lib.IntTypes.v len > 0} -> db: Lib.Buffer.lbuffer Lib.IntTypes.uint8 len -> emBits: Lib.IntTypes.size_t -> FStar.HyperStack.ST.Stack Prims.unit
{ "end_col": 57, "end_line": 65, "start_col": 27, "start_line": 62 }
FStar.HyperStack.ST.Stack
val get_m1Hash: a:Hash.hash_alg{S.hash_is_supported a} -> saltLen:salt_len_t a -> salt:lbuffer uint8 saltLen -> msgLen:msg_len_t a -> msg:lbuffer uint8 msgLen -> hLen:size_t{v hLen == Hash.hash_length a} -> m1Hash:lbuffer uint8 hLen -> Stack unit (requires fun h -> live h salt /\ live h msg /\ l...
[ { "abbrev": true, "full_module": "Hacl.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Spec.RSAPSS", "short_module": "S" }, { "abbrev": true, "full_module": "Spec.Agile.Hash", "short_module": "Hash" }, { "abbrev": true, "full_mod...
false
let get_m1Hash a saltLen salt msgLen msg hLen m1Hash = push_frame (); //m1 = [8 * 0x00; mHash; salt] let m1Len = 8ul +! hLen +! saltLen in let m1 = create m1Len (u8 0) in let h0 = ST.get () in update_sub_f h0 m1 8ul hLen (fun h -> Hash.hash a (as_seq h0 msg)) (fun _ -> hash a (sub m1 8ul hLen) msgLe...
val get_m1Hash: a:Hash.hash_alg{S.hash_is_supported a} -> saltLen:salt_len_t a -> salt:lbuffer uint8 saltLen -> msgLen:msg_len_t a -> msg:lbuffer uint8 msgLen -> hLen:size_t{v hLen == Hash.hash_length a} -> m1Hash:lbuffer uint8 hLen -> Stack unit (requires fun h -> live h salt /\ live h msg /\ l...
true
null
false
push_frame (); let m1Len = 8ul +! hLen +! saltLen in let m1 = create m1Len (u8 0) in let h0 = ST.get () in update_sub_f h0 m1 8ul hLen (fun h -> Hash.hash a (as_seq h0 msg)) (fun _ -> hash a (sub m1 8ul hLen) msgLen msg); update_sub m1 (8ul +! hLen) saltLen salt; hash a m1Hash m1Len m1; pop_frame ()
{ "checked_file": "Hacl.Impl.RSAPSS.Padding.fst.checked", "dependencies": [ "Spec.RSAPSS.fst.checked", "Spec.Hash.Definitions.fst.checked", "Spec.Agile.Hash.fsti.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.RawIntTypes.fsti.checked", "Lib.IntTypes.fsti.checked", "...
[]
[ "Spec.Hash.Definitions.hash_alg", "Prims.b2t", "Spec.RSAPSS.hash_is_supported", "Hacl.Impl.RSAPSS.Padding.salt_len_t", "Lib.Buffer.lbuffer", "Lib.IntTypes.uint8", "Hacl.Impl.RSAPSS.Padding.msg_len_t", "Lib.IntTypes.size_t", "Prims.eq2", "Prims.int", "Prims.l_or", "Lib.IntTypes.range", "Lib.I...
[]
module Hacl.Impl.RSAPSS.Padding open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer open Hacl.Impl.RSAPSS.MGF module ST = FStar.HyperStack.ST module LSeq = Lib.Sequence module Hash = Spec.Agile.Hash module S = Spec.RSAPSS module BD = Hacl.Bignum.Definitions #reset-opti...
false
false
Hacl.Impl.RSAPSS.Padding.fst
{ "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...
null
val get_m1Hash: a:Hash.hash_alg{S.hash_is_supported a} -> saltLen:salt_len_t a -> salt:lbuffer uint8 saltLen -> msgLen:msg_len_t a -> msg:lbuffer uint8 msgLen -> hLen:size_t{v hLen == Hash.hash_length a} -> m1Hash:lbuffer uint8 hLen -> Stack unit (requires fun h -> live h salt /\ live h msg /\ l...
[]
Hacl.Impl.RSAPSS.Padding.get_m1Hash
{ "file_name": "code/rsapss/Hacl.Impl.RSAPSS.Padding.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Hash.Definitions.hash_alg{Spec.RSAPSS.hash_is_supported a} -> saltLen: Hacl.Impl.RSAPSS.Padding.salt_len_t a -> salt: Lib.Buffer.lbuffer Lib.IntTypes.uint8 saltLen -> msgLen: Hacl.Impl.RSAPSS.Padding.msg_len_t a -> msg: Lib.Buffer.lbuffer Lib.IntTypes.uint8 msgLen -> hLen: Lib.IntTypes....
{ "end_col": 13, "end_line": 100, "start_col": 2, "start_line": 90 }
FStar.HyperStack.ST.Stack
val pss_verify: a:Hash.hash_alg{S.hash_is_supported a} -> saltLen:salt_len_t a -> msgLen:msg_len_t a -> msg:lbuffer uint8 msgLen -> emBits:size_t{0 < v emBits} -> em:lbuffer uint8 (BD.blocks emBits 8ul) -> Stack bool (requires fun h -> live h msg /\ live h em /\ disjoint em msg) (ensures fun h0 r h...
[ { "abbrev": true, "full_module": "Hacl.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Spec.RSAPSS", "short_module": "S" }, { "abbrev": true, "full_module": "Spec.Agile.Hash", "short_module": "Hash" }, { "abbrev": true, "full_mod...
false
let pss_verify a saltLen msgLen msg emBits em = let emLen = BD.blocks emBits 8ul in let msBits = emBits %. 8ul in let em_0 = if msBits >. 0ul then em.(0ul) &. (u8 0xff <<. msBits) else u8 0 in let em_last = em.(emLen -! 1ul) in if (emLen <. saltLen +! hash_len a +! 2ul) then false else begin if not (F...
val pss_verify: a:Hash.hash_alg{S.hash_is_supported a} -> saltLen:salt_len_t a -> msgLen:msg_len_t a -> msg:lbuffer uint8 msgLen -> emBits:size_t{0 < v emBits} -> em:lbuffer uint8 (BD.blocks emBits 8ul) -> Stack bool (requires fun h -> live h msg /\ live h em /\ disjoint em msg) (ensures fun h0 r h...
true
null
false
let emLen = BD.blocks emBits 8ul in let msBits = emBits %. 8ul in let em_0 = if msBits >. 0ul then em.(0ul) &. (u8 0xff <<. msBits) else u8 0 in let em_last = em.(emLen -! 1ul) in if (emLen <. saltLen +! hash_len a +! 2ul) then false else if not (FStar.UInt8.(Lib.RawIntTypes.u8_to_UInt8 em_last =^ 0xbcuy) && ...
{ "checked_file": "Hacl.Impl.RSAPSS.Padding.fst.checked", "dependencies": [ "Spec.RSAPSS.fst.checked", "Spec.Hash.Definitions.fst.checked", "Spec.Agile.Hash.fsti.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.RawIntTypes.fsti.checked", "Lib.IntTypes.fsti.checked", "...
[]
[ "Spec.Hash.Definitions.hash_alg", "Prims.b2t", "Spec.RSAPSS.hash_is_supported", "Hacl.Impl.RSAPSS.Padding.salt_len_t", "Hacl.Impl.RSAPSS.Padding.msg_len_t", "Lib.Buffer.lbuffer", "Lib.IntTypes.uint8", "Lib.IntTypes.size_t", "Prims.op_LessThan", "Lib.IntTypes.v", "Lib.IntTypes.U32", "Lib.IntTyp...
[]
module Hacl.Impl.RSAPSS.Padding open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer open Hacl.Impl.RSAPSS.MGF module ST = FStar.HyperStack.ST module LSeq = Lib.Sequence module Hash = Spec.Agile.Hash module S = Spec.RSAPSS module BD = Hacl.Bignum.Definitions #reset-opti...
false
false
Hacl.Impl.RSAPSS.Padding.fst
{ "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...
null
val pss_verify: a:Hash.hash_alg{S.hash_is_supported a} -> saltLen:salt_len_t a -> msgLen:msg_len_t a -> msg:lbuffer uint8 msgLen -> emBits:size_t{0 < v emBits} -> em:lbuffer uint8 (BD.blocks emBits 8ul) -> Stack bool (requires fun h -> live h msg /\ live h em /\ disjoint em msg) (ensures fun h0 r h...
[]
Hacl.Impl.RSAPSS.Padding.pss_verify
{ "file_name": "code/rsapss/Hacl.Impl.RSAPSS.Padding.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Hash.Definitions.hash_alg{Spec.RSAPSS.hash_is_supported a} -> saltLen: Hacl.Impl.RSAPSS.Padding.salt_len_t a -> msgLen: Hacl.Impl.RSAPSS.Padding.msg_len_t a -> msg: Lib.Buffer.lbuffer Lib.IntTypes.uint8 msgLen -> emBits: Lib.IntTypes.size_t{0 < Lib.IntTypes.v emBits} -> em: Lib.Buffer.l...
{ "end_col": 55, "end_line": 250, "start_col": 47, "start_line": 239 }
FStar.HyperStack.ST.Stack
val get_maskedDB: a:Hash.hash_alg{S.hash_is_supported a} -> saltLen:salt_len_t a -> salt:lbuffer uint8 saltLen -> hLen:size_t{v hLen == Hash.hash_length a} -> m1Hash:lbuffer uint8 hLen -> emBits:em_len_t a saltLen -> dbLen:size_t{v dbLen == S.blocks (v emBits) 8 - Hash.hash_length a - 1} -> db_mask:lb...
[ { "abbrev": true, "full_module": "Hacl.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Spec.RSAPSS", "short_module": "S" }, { "abbrev": true, "full_module": "Spec.Agile.Hash", "short_module": "Hash" }, { "abbrev": true, "full_mod...
false
let get_maskedDB a saltLen salt hLen m1Hash emBits dbLen db = push_frame (); //db = [0x00;..; 0x00; 0x01; salt] let last_before_salt = dbLen -! saltLen -! 1ul in db.(last_before_salt) <- u8 1; update_sub db (last_before_salt +! 1ul) saltLen salt; let dbMask = create dbLen (u8 0) in assert_norm (Hash.hash...
val get_maskedDB: a:Hash.hash_alg{S.hash_is_supported a} -> saltLen:salt_len_t a -> salt:lbuffer uint8 saltLen -> hLen:size_t{v hLen == Hash.hash_length a} -> m1Hash:lbuffer uint8 hLen -> emBits:em_len_t a saltLen -> dbLen:size_t{v dbLen == S.blocks (v emBits) 8 - Hash.hash_length a - 1} -> db_mask:lb...
true
null
false
push_frame (); let last_before_salt = dbLen -! saltLen -! 1ul in db.(last_before_salt) <- u8 1; update_sub db (last_before_salt +! 1ul) saltLen salt; let dbMask = create dbLen (u8 0) in assert_norm (Hash.hash_length a + 4 <= max_size_t /\ (Hash.hash_length a + 4) `less_than_max_input_length` a); mgf_hash a hLen m1H...
{ "checked_file": "Hacl.Impl.RSAPSS.Padding.fst.checked", "dependencies": [ "Spec.RSAPSS.fst.checked", "Spec.Hash.Definitions.fst.checked", "Spec.Agile.Hash.fsti.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.RawIntTypes.fsti.checked", "Lib.IntTypes.fsti.checked", "...
[]
[ "Spec.Hash.Definitions.hash_alg", "Prims.b2t", "Spec.RSAPSS.hash_is_supported", "Hacl.Impl.RSAPSS.Padding.salt_len_t", "Lib.Buffer.lbuffer", "Lib.IntTypes.uint8", "Lib.IntTypes.size_t", "Prims.eq2", "Prims.int", "Prims.l_or", "Lib.IntTypes.range", "Lib.IntTypes.U32", "Prims.l_and", "Prims....
[]
module Hacl.Impl.RSAPSS.Padding open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer open Hacl.Impl.RSAPSS.MGF module ST = FStar.HyperStack.ST module LSeq = Lib.Sequence module Hash = Spec.Agile.Hash module S = Spec.RSAPSS module BD = Hacl.Bignum.Definitions #reset-opti...
false
false
Hacl.Impl.RSAPSS.Padding.fst
{ "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...
null
val get_maskedDB: a:Hash.hash_alg{S.hash_is_supported a} -> saltLen:salt_len_t a -> salt:lbuffer uint8 saltLen -> hLen:size_t{v hLen == Hash.hash_length a} -> m1Hash:lbuffer uint8 hLen -> emBits:em_len_t a saltLen -> dbLen:size_t{v dbLen == S.blocks (v emBits) 8 - Hash.hash_length a - 1} -> db_mask:lb...
[]
Hacl.Impl.RSAPSS.Padding.get_maskedDB
{ "file_name": "code/rsapss/Hacl.Impl.RSAPSS.Padding.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Hash.Definitions.hash_alg{Spec.RSAPSS.hash_is_supported a} -> saltLen: Hacl.Impl.RSAPSS.Padding.salt_len_t a -> salt: Lib.Buffer.lbuffer Lib.IntTypes.uint8 saltLen -> hLen: Lib.IntTypes.size_t{Lib.IntTypes.v hLen == Spec.Hash.Definitions.hash_length a} -> m1Hash: Lib.Buffer.lbuffer Lib.IntT...
{ "end_col": 13, "end_line": 143, "start_col": 2, "start_line": 132 }
FStar.HyperStack.ST.Stack
val pss_encode: a:Hash.hash_alg{S.hash_is_supported a} -> saltLen:salt_len_t a -> salt:lbuffer uint8 saltLen -> msgLen:msg_len_t a -> msg:lbuffer uint8 msgLen -> emBits:em_len_t a saltLen -> em:lbuffer uint8 (BD.blocks emBits 8ul) -> Stack unit (requires fun h -> live h salt /\ live h msg /\ liv...
[ { "abbrev": true, "full_module": "Hacl.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Spec.RSAPSS", "short_module": "S" }, { "abbrev": true, "full_module": "Spec.Agile.Hash", "short_module": "Hash" }, { "abbrev": true, "full_mod...
false
let pss_encode a saltLen salt msgLen msg emBits em = push_frame (); let hLen = hash_len a in let m1Hash = create hLen (u8 0) in get_m1Hash a saltLen salt msgLen msg hLen m1Hash; let emLen = BD.blocks emBits 8ul in let dbLen = emLen -! hLen -! 1ul in let db = create dbLen (u8 0) in get_maskedDB a saltLe...
val pss_encode: a:Hash.hash_alg{S.hash_is_supported a} -> saltLen:salt_len_t a -> salt:lbuffer uint8 saltLen -> msgLen:msg_len_t a -> msg:lbuffer uint8 msgLen -> emBits:em_len_t a saltLen -> em:lbuffer uint8 (BD.blocks emBits 8ul) -> Stack unit (requires fun h -> live h salt /\ live h msg /\ liv...
true
null
false
push_frame (); let hLen = hash_len a in let m1Hash = create hLen (u8 0) in get_m1Hash a saltLen salt msgLen msg hLen m1Hash; let emLen = BD.blocks emBits 8ul in let dbLen = emLen -! hLen -! 1ul in let db = create dbLen (u8 0) in get_maskedDB a saltLen salt hLen m1Hash emBits dbLen db; update_sub em 0ul dbLen db; update...
{ "checked_file": "Hacl.Impl.RSAPSS.Padding.fst.checked", "dependencies": [ "Spec.RSAPSS.fst.checked", "Spec.Hash.Definitions.fst.checked", "Spec.Agile.Hash.fsti.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.RawIntTypes.fsti.checked", "Lib.IntTypes.fsti.checked", "...
[]
[ "Spec.Hash.Definitions.hash_alg", "Prims.b2t", "Spec.RSAPSS.hash_is_supported", "Hacl.Impl.RSAPSS.Padding.salt_len_t", "Lib.Buffer.lbuffer", "Lib.IntTypes.uint8", "Hacl.Impl.RSAPSS.Padding.msg_len_t", "Hacl.Impl.RSAPSS.Padding.em_len_t", "Hacl.Bignum.Definitions.blocks", "FStar.UInt32.__uint_to_t"...
[]
module Hacl.Impl.RSAPSS.Padding open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer open Hacl.Impl.RSAPSS.MGF module ST = FStar.HyperStack.ST module LSeq = Lib.Sequence module Hash = Spec.Agile.Hash module S = Spec.RSAPSS module BD = Hacl.Bignum.Definitions #reset-opti...
false
false
Hacl.Impl.RSAPSS.Padding.fst
{ "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...
null
val pss_encode: a:Hash.hash_alg{S.hash_is_supported a} -> saltLen:salt_len_t a -> salt:lbuffer uint8 saltLen -> msgLen:msg_len_t a -> msg:lbuffer uint8 msgLen -> emBits:em_len_t a saltLen -> em:lbuffer uint8 (BD.blocks emBits 8ul) -> Stack unit (requires fun h -> live h salt /\ live h msg /\ liv...
[]
Hacl.Impl.RSAPSS.Padding.pss_encode
{ "file_name": "code/rsapss/Hacl.Impl.RSAPSS.Padding.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Hash.Definitions.hash_alg{Spec.RSAPSS.hash_is_supported a} -> saltLen: Hacl.Impl.RSAPSS.Padding.salt_len_t a -> salt: Lib.Buffer.lbuffer Lib.IntTypes.uint8 saltLen -> msgLen: Hacl.Impl.RSAPSS.Padding.msg_len_t a -> msg: Lib.Buffer.lbuffer Lib.IntTypes.uint8 msgLen -> emBits: Hacl.Impl.R...
{ "end_col": 13, "end_line": 177, "start_col": 2, "start_line": 164 }
FStar.HyperStack.ST.Stack
val pss_verify_: a:Hash.hash_alg{S.hash_is_supported a} -> saltLen:salt_len_t a -> msgLen:msg_len_t a -> msg:lbuffer uint8 msgLen -> emBits:em_len_t a saltLen -> em:lbuffer uint8 (BD.blocks emBits 8ul) -> Stack bool (requires fun h -> live h msg /\ live h em /\ disjoint em msg) (ensures fun h0 r h1...
[ { "abbrev": true, "full_module": "Hacl.Bignum.Definitions", "short_module": "BD" }, { "abbrev": true, "full_module": "Spec.RSAPSS", "short_module": "S" }, { "abbrev": true, "full_module": "Spec.Agile.Hash", "short_module": "Hash" }, { "abbrev": true, "full_mod...
false
let pss_verify_ a saltLen msgLen msg emBits em = push_frame (); let emLen = BD.blocks emBits 8ul in let hLen = hash_len a in let m1Hash0 = create hLen (u8 0) in let dbLen = emLen -! hLen -! 1ul in let maskedDB = sub em 0ul dbLen in let m1Hash = sub em dbLen hLen in let dbMask = create dbLen (u8 0) in ...
val pss_verify_: a:Hash.hash_alg{S.hash_is_supported a} -> saltLen:salt_len_t a -> msgLen:msg_len_t a -> msg:lbuffer uint8 msgLen -> emBits:em_len_t a saltLen -> em:lbuffer uint8 (BD.blocks emBits 8ul) -> Stack bool (requires fun h -> live h msg /\ live h em /\ disjoint em msg) (ensures fun h0 r h1...
true
null
false
push_frame (); let emLen = BD.blocks emBits 8ul in let hLen = hash_len a in let m1Hash0 = create hLen (u8 0) in let dbLen = emLen -! hLen -! 1ul in let maskedDB = sub em 0ul dbLen in let m1Hash = sub em dbLen hLen in let dbMask = create dbLen (u8 0) in mgf_hash a hLen m1Hash dbLen dbMask; xor_bytes dbLen dbMask maskedD...
{ "checked_file": "Hacl.Impl.RSAPSS.Padding.fst.checked", "dependencies": [ "Spec.RSAPSS.fst.checked", "Spec.Hash.Definitions.fst.checked", "Spec.Agile.Hash.fsti.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.RawIntTypes.fsti.checked", "Lib.IntTypes.fsti.checked", "...
[]
[ "Spec.Hash.Definitions.hash_alg", "Prims.b2t", "Spec.RSAPSS.hash_is_supported", "Hacl.Impl.RSAPSS.Padding.salt_len_t", "Hacl.Impl.RSAPSS.Padding.msg_len_t", "Lib.Buffer.lbuffer", "Lib.IntTypes.uint8", "Hacl.Impl.RSAPSS.Padding.em_len_t", "Hacl.Bignum.Definitions.blocks", "FStar.UInt32.__uint_to_t"...
[]
module Hacl.Impl.RSAPSS.Padding open FStar.HyperStack open FStar.HyperStack.ST open FStar.Mul open Lib.IntTypes open Lib.Buffer open Hacl.Impl.RSAPSS.MGF module ST = FStar.HyperStack.ST module LSeq = Lib.Sequence module Hash = Spec.Agile.Hash module S = Spec.RSAPSS module BD = Hacl.Bignum.Definitions #reset-opti...
false
false
Hacl.Impl.RSAPSS.Padding.fst
{ "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...
null
val pss_verify_: a:Hash.hash_alg{S.hash_is_supported a} -> saltLen:salt_len_t a -> msgLen:msg_len_t a -> msg:lbuffer uint8 msgLen -> emBits:em_len_t a saltLen -> em:lbuffer uint8 (BD.blocks emBits 8ul) -> Stack bool (requires fun h -> live h msg /\ live h em /\ disjoint em msg) (ensures fun h0 r h1...
[]
Hacl.Impl.RSAPSS.Padding.pss_verify_
{ "file_name": "code/rsapss/Hacl.Impl.RSAPSS.Padding.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Hash.Definitions.hash_alg{Spec.RSAPSS.hash_is_supported a} -> saltLen: Hacl.Impl.RSAPSS.Padding.salt_len_t a -> msgLen: Hacl.Impl.RSAPSS.Padding.msg_len_t a -> msg: Lib.Buffer.lbuffer Lib.IntTypes.uint8 msgLen -> emBits: Hacl.Impl.RSAPSS.Padding.em_len_t a saltLen -> em: Lib.Buffer.lbuf...
{ "end_col": 5, "end_line": 221, "start_col": 2, "start_line": 194 }
Prims.Tot
val pts_to (#n:US.t) (bv:bv_t n) (p:perm) (s:repr) : vprop
[ { "abbrev": true, "full_module": "Steel.ST.Array", "short_module": "A" }, { "abbrev": false, "full_module": "Steel.ST.Util", "short_module": null }, { "abbrev": true, "full_module": "FStar.Ghost", "short_module": "G" }, { "abbrev": true, "full_module": "FStar....
false
let pts_to bv p s = A.pts_to bv p s
val pts_to (#n:US.t) (bv:bv_t n) (p:perm) (s:repr) : vprop let pts_to bv p s =
false
null
false
A.pts_to bv p s
{ "checked_file": "Steel.ST.BitVector.fst.checked", "dependencies": [ "Steel.ST.Util.fsti.checked", "Steel.ST.Effect.Ghost.fsti.checked", "Steel.ST.Effect.fsti.checked", "Steel.ST.Array.fsti.checked", "prims.fst.checked", "FStar.SizeT.fsti.checked", "FStar.Pervasives.fsti.checked", "...
[ "total" ]
[ "FStar.SizeT.t", "Steel.ST.BitVector.bv_t", "Steel.FractionalPermission.perm", "Steel.ST.BitVector.repr", "Steel.ST.Array.pts_to", "Prims.bool", "Steel.Effect.Common.vprop" ]
[]
(* Copyright 2021 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 agreed to...
false
false
Steel.ST.BitVector.fst
{ "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...
null
val pts_to (#n:US.t) (bv:bv_t n) (p:perm) (s:repr) : vprop
[]
Steel.ST.BitVector.pts_to
{ "file_name": "lib/steel/Steel.ST.BitVector.fst", "git_rev": "7fbb54e94dd4f48ff7cb867d3bae6889a635541e", "git_url": "https://github.com/FStarLang/steel.git", "project_name": "steel" }
bv: Steel.ST.BitVector.bv_t n -> p: Steel.FractionalPermission.perm -> s: Steel.ST.BitVector.repr -> Steel.Effect.Common.vprop
{ "end_col": 35, "end_line": 33, "start_col": 20, "start_line": 33 }
Steel.ST.Effect.Ghost.STGhost
val pts_to_length (#opened:_) (#n:US.t) (#p:perm) (bv:bv_t n) (s:repr) : STGhost unit opened (pts_to bv p s) (fun _ -> pts_to bv p s) (requires True) (ensures fun _ -> Seq.length s == US.v n)
[ { "abbrev": true, "full_module": "Steel.ST.Array", "short_module": "A" }, { "abbrev": false, "full_module": "Steel.ST.Util", "short_module": null }, { "abbrev": true, "full_module": "FStar.Ghost", "short_module": "G" }, { "abbrev": true, "full_module": "FStar....
false
let pts_to_length bv s = A.pts_to_length bv s
val pts_to_length (#opened:_) (#n:US.t) (#p:perm) (bv:bv_t n) (s:repr) : STGhost unit opened (pts_to bv p s) (fun _ -> pts_to bv p s) (requires True) (ensures fun _ -> Seq.length s == US.v n) let pts_to_length bv s =
true
null
false
A.pts_to_length bv s
{ "checked_file": "Steel.ST.BitVector.fst.checked", "dependencies": [ "Steel.ST.Util.fsti.checked", "Steel.ST.Effect.Ghost.fsti.checked", "Steel.ST.Effect.fsti.checked", "Steel.ST.Array.fsti.checked", "prims.fst.checked", "FStar.SizeT.fsti.checked", "FStar.Pervasives.fsti.checked", "...
[]
[ "Steel.Memory.inames", "FStar.SizeT.t", "Steel.FractionalPermission.perm", "Steel.ST.BitVector.bv_t", "Steel.ST.BitVector.repr", "Steel.ST.Array.pts_to_length", "Prims.bool", "Prims.unit" ]
[]
(* Copyright 2021 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 agreed to...
false
false
Steel.ST.BitVector.fst
{ "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...
null
val pts_to_length (#opened:_) (#n:US.t) (#p:perm) (bv:bv_t n) (s:repr) : STGhost unit opened (pts_to bv p s) (fun _ -> pts_to bv p s) (requires True) (ensures fun _ -> Seq.length s == US.v n)
[]
Steel.ST.BitVector.pts_to_length
{ "file_name": "lib/steel/Steel.ST.BitVector.fst", "git_rev": "7fbb54e94dd4f48ff7cb867d3bae6889a635541e", "git_url": "https://github.com/FStarLang/steel.git", "project_name": "steel" }
bv: Steel.ST.BitVector.bv_t n -> s: Steel.ST.BitVector.repr -> Steel.ST.Effect.Ghost.STGhost Prims.unit
{ "end_col": 45, "end_line": 35, "start_col": 25, "start_line": 35 }
Steel.ST.Effect.STT
val alloc (n:US.t{US.v n > 0}) : STT (bv_t n) emp (fun r -> pts_to r full_perm (Seq.create (US.v n) false))
[ { "abbrev": true, "full_module": "Steel.ST.Array", "short_module": "A" }, { "abbrev": false, "full_module": "Steel.ST.Util", "short_module": null }, { "abbrev": true, "full_module": "FStar.Ghost", "short_module": "G" }, { "abbrev": true, "full_module": "FStar....
false
let alloc n = A.alloc false n
val alloc (n:US.t{US.v n > 0}) : STT (bv_t n) emp (fun r -> pts_to r full_perm (Seq.create (US.v n) false)) let alloc n =
true
null
false
A.alloc false n
{ "checked_file": "Steel.ST.BitVector.fst.checked", "dependencies": [ "Steel.ST.Util.fsti.checked", "Steel.ST.Effect.Ghost.fsti.checked", "Steel.ST.Effect.fsti.checked", "Steel.ST.Array.fsti.checked", "prims.fst.checked", "FStar.SizeT.fsti.checked", "FStar.Pervasives.fsti.checked", "...
[]
[ "FStar.SizeT.t", "Prims.b2t", "Prims.op_GreaterThan", "FStar.SizeT.v", "Steel.ST.Array.alloc", "Prims.bool", "Steel.ST.Array.array", "Steel.ST.BitVector.bv_t" ]
[]
(* Copyright 2021 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 agreed to...
false
false
Steel.ST.BitVector.fst
{ "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...
null
val alloc (n:US.t{US.v n > 0}) : STT (bv_t n) emp (fun r -> pts_to r full_perm (Seq.create (US.v n) false))
[]
Steel.ST.BitVector.alloc
{ "file_name": "lib/steel/Steel.ST.BitVector.fst", "git_rev": "7fbb54e94dd4f48ff7cb867d3bae6889a635541e", "git_url": "https://github.com/FStarLang/steel.git", "project_name": "steel" }
n: FStar.SizeT.t{FStar.SizeT.v n > 0} -> Steel.ST.Effect.STT (Steel.ST.BitVector.bv_t n)
{ "end_col": 29, "end_line": 37, "start_col": 14, "start_line": 37 }
Steel.ST.Effect.ST
val bv_is_set (#n:US.t) (#p:perm) (#s:G.erased repr) (bv:bv_t n) (i:US.t{US.v i < Seq.length s}) : ST bool (pts_to bv p s) (fun _ -> pts_to bv p s) (requires True) (ensures fun b -> b == Seq.index s (US.v i))
[ { "abbrev": true, "full_module": "Steel.ST.Array", "short_module": "A" }, { "abbrev": false, "full_module": "Steel.ST.Util", "short_module": null }, { "abbrev": true, "full_module": "FStar.Ghost", "short_module": "G" }, { "abbrev": true, "full_module": "FStar....
false
let bv_is_set bv i = A.read bv i
val bv_is_set (#n:US.t) (#p:perm) (#s:G.erased repr) (bv:bv_t n) (i:US.t{US.v i < Seq.length s}) : ST bool (pts_to bv p s) (fun _ -> pts_to bv p s) (requires True) (ensures fun b -> b == Seq.index s (US.v i)) let bv_is_set bv i =
true
null
false
A.read bv i
{ "checked_file": "Steel.ST.BitVector.fst.checked", "dependencies": [ "Steel.ST.Util.fsti.checked", "Steel.ST.Effect.Ghost.fsti.checked", "Steel.ST.Effect.fsti.checked", "Steel.ST.Array.fsti.checked", "prims.fst.checked", "FStar.SizeT.fsti.checked", "FStar.Pervasives.fsti.checked", "...
[]
[ "FStar.SizeT.t", "Steel.FractionalPermission.perm", "FStar.Ghost.erased", "Steel.ST.BitVector.repr", "Steel.ST.BitVector.bv_t", "Prims.b2t", "Prims.op_LessThan", "FStar.SizeT.v", "FStar.Seq.Base.length", "Prims.bool", "FStar.Ghost.reveal", "Steel.ST.Array.read" ]
[]
(* Copyright 2021 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 agreed to...
false
false
Steel.ST.BitVector.fst
{ "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...
null
val bv_is_set (#n:US.t) (#p:perm) (#s:G.erased repr) (bv:bv_t n) (i:US.t{US.v i < Seq.length s}) : ST bool (pts_to bv p s) (fun _ -> pts_to bv p s) (requires True) (ensures fun b -> b == Seq.index s (US.v i))
[]
Steel.ST.BitVector.bv_is_set
{ "file_name": "lib/steel/Steel.ST.BitVector.fst", "git_rev": "7fbb54e94dd4f48ff7cb867d3bae6889a635541e", "git_url": "https://github.com/FStarLang/steel.git", "project_name": "steel" }
bv: Steel.ST.BitVector.bv_t n -> i: FStar.SizeT.t{FStar.SizeT.v i < FStar.Seq.Base.length (FStar.Ghost.reveal s)} -> Steel.ST.Effect.ST Prims.bool
{ "end_col": 32, "end_line": 39, "start_col": 21, "start_line": 39 }
Steel.ST.Effect.STT
val bv_set (#n:US.t) (#s:G.erased repr) (bv:bv_t n) (i:US.t{US.v i < Seq.length s}) : STT unit (pts_to bv full_perm s) (fun _ -> pts_to bv full_perm (Seq.upd s (US.v i) true))
[ { "abbrev": true, "full_module": "Steel.ST.Array", "short_module": "A" }, { "abbrev": false, "full_module": "Steel.ST.Util", "short_module": null }, { "abbrev": true, "full_module": "FStar.Ghost", "short_module": "G" }, { "abbrev": true, "full_module": "FStar....
false
let bv_set #_ #s bv i = A.write #_ bv #s i true
val bv_set (#n:US.t) (#s:G.erased repr) (bv:bv_t n) (i:US.t{US.v i < Seq.length s}) : STT unit (pts_to bv full_perm s) (fun _ -> pts_to bv full_perm (Seq.upd s (US.v i) true)) let bv_set #_ #s bv i =
true
null
false
A.write #_ bv #s i true
{ "checked_file": "Steel.ST.BitVector.fst.checked", "dependencies": [ "Steel.ST.Util.fsti.checked", "Steel.ST.Effect.Ghost.fsti.checked", "Steel.ST.Effect.fsti.checked", "Steel.ST.Array.fsti.checked", "prims.fst.checked", "FStar.SizeT.fsti.checked", "FStar.Pervasives.fsti.checked", "...
[]
[ "FStar.SizeT.t", "FStar.Ghost.erased", "Steel.ST.BitVector.repr", "Steel.ST.BitVector.bv_t", "Prims.b2t", "Prims.op_LessThan", "FStar.SizeT.v", "FStar.Seq.Base.length", "Prims.bool", "FStar.Ghost.reveal", "Steel.ST.Array.write", "Prims.unit" ]
[]
(* Copyright 2021 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 agreed to...
false
false
Steel.ST.BitVector.fst
{ "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...
null
val bv_set (#n:US.t) (#s:G.erased repr) (bv:bv_t n) (i:US.t{US.v i < Seq.length s}) : STT unit (pts_to bv full_perm s) (fun _ -> pts_to bv full_perm (Seq.upd s (US.v i) true))
[]
Steel.ST.BitVector.bv_set
{ "file_name": "lib/steel/Steel.ST.BitVector.fst", "git_rev": "7fbb54e94dd4f48ff7cb867d3bae6889a635541e", "git_url": "https://github.com/FStarLang/steel.git", "project_name": "steel" }
bv: Steel.ST.BitVector.bv_t n -> i: FStar.SizeT.t{FStar.SizeT.v i < FStar.Seq.Base.length (FStar.Ghost.reveal s)} -> Steel.ST.Effect.STT Prims.unit
{ "end_col": 47, "end_line": 41, "start_col": 24, "start_line": 41 }
Steel.ST.Effect.STT
val bv_unset (#n:US.t) (#s:G.erased repr) (bv:bv_t n) (i:US.t{US.v i < Seq.length s}) : STT unit (pts_to bv full_perm s) (fun _ -> pts_to bv full_perm (Seq.upd s (US.v i) false))
[ { "abbrev": true, "full_module": "Steel.ST.Array", "short_module": "A" }, { "abbrev": false, "full_module": "Steel.ST.Util", "short_module": null }, { "abbrev": true, "full_module": "FStar.Ghost", "short_module": "G" }, { "abbrev": true, "full_module": "FStar....
false
let bv_unset #_ #s bv i = A.write #_ bv #s i false
val bv_unset (#n:US.t) (#s:G.erased repr) (bv:bv_t n) (i:US.t{US.v i < Seq.length s}) : STT unit (pts_to bv full_perm s) (fun _ -> pts_to bv full_perm (Seq.upd s (US.v i) false)) let bv_unset #_ #s bv i =
true
null
false
A.write #_ bv #s i false
{ "checked_file": "Steel.ST.BitVector.fst.checked", "dependencies": [ "Steel.ST.Util.fsti.checked", "Steel.ST.Effect.Ghost.fsti.checked", "Steel.ST.Effect.fsti.checked", "Steel.ST.Array.fsti.checked", "prims.fst.checked", "FStar.SizeT.fsti.checked", "FStar.Pervasives.fsti.checked", "...
[]
[ "FStar.SizeT.t", "FStar.Ghost.erased", "Steel.ST.BitVector.repr", "Steel.ST.BitVector.bv_t", "Prims.b2t", "Prims.op_LessThan", "FStar.SizeT.v", "FStar.Seq.Base.length", "Prims.bool", "FStar.Ghost.reveal", "Steel.ST.Array.write", "Prims.unit" ]
[]
(* Copyright 2021 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 agreed to...
false
false
Steel.ST.BitVector.fst
{ "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...
null
val bv_unset (#n:US.t) (#s:G.erased repr) (bv:bv_t n) (i:US.t{US.v i < Seq.length s}) : STT unit (pts_to bv full_perm s) (fun _ -> pts_to bv full_perm (Seq.upd s (US.v i) false))
[]
Steel.ST.BitVector.bv_unset
{ "file_name": "lib/steel/Steel.ST.BitVector.fst", "git_rev": "7fbb54e94dd4f48ff7cb867d3bae6889a635541e", "git_url": "https://github.com/FStarLang/steel.git", "project_name": "steel" }
bv: Steel.ST.BitVector.bv_t n -> i: FStar.SizeT.t{FStar.SizeT.v i < FStar.Seq.Base.length (FStar.Ghost.reveal s)} -> Steel.ST.Effect.STT Prims.unit
{ "end_col": 50, "end_line": 43, "start_col": 26, "start_line": 43 }
Prims.Tot
val adx_pre:VSig.vale_pre dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let adx_pre : VSig.vale_pre dom = fun (c:V.va_code) (va_s0:V.va_state) -> VC.va_req_Check_adx_bmi2_stdcall c va_s0 IA.win
val adx_pre:VSig.vale_pre dom let adx_pre:VSig.vale_pre dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) -> VC.va_req_Check_adx_bmi2_stdcall c va_s0 IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.Lib.X64.Cpuidstdcall.va_req_Check_adx_bmi2_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val adx_pre:VSig.vale_pre dom
[]
Vale.Stdcalls.X64.Cpuid.adx_pre
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_pre Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 53, "end_line": 132, "start_col": 2, "start_line": 130 }
Prims.Tot
val aesni_pre:VSig.vale_pre dom
[ { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, "full_module": "Vale.X64.MemoryAdapters", "short_module": null }, { "abbrev": true, "full_module": "Vale.AsLowStar.Wrapper", "short_module": "W" }, { "abbrev":...
false
let aesni_pre : VSig.vale_pre dom = fun (c:V.va_code) (va_s0:V.va_state) -> VC.va_req_Check_aesni_stdcall c va_s0 IA.win
val aesni_pre:VSig.vale_pre dom let aesni_pre:VSig.vale_pre dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) -> VC.va_req_Check_aesni_stdcall c va_s0 IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.Lib.X64.Cpuidstdcall.va_req_Check_aesni_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val aesni_pre:VSig.vale_pre dom
[]
Vale.Stdcalls.X64.Cpuid.aesni_pre
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_pre Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 50, "end_line": 29, "start_col": 2, "start_line": 27 }
Prims.Tot
val aesni_post:VSig.vale_post dom
[ { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, "full_module": "Vale.X64.MemoryAdapters", "short_module": null }, { "abbrev": true, "full_module": "Vale.AsLowStar.Wrapper", "short_module": "W" }, { "abbrev":...
false
let aesni_post : VSig.vale_post dom = fun (c:V.va_code) (va_s0:V.va_state) (va_s1:V.va_state) (f:V.va_fuel) -> VC.va_ens_Check_aesni_stdcall c va_s0 IA.win va_s1 f
val aesni_post:VSig.vale_post dom let aesni_post:VSig.vale_post dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) (va_s1: V.va_state) (f: V.va_fuel) -> VC.va_ens_Check_aesni_stdcall c va_s0 IA.win va_s1 f
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.X64.Decls.va_fuel", "Vale.Lib.X64.Cpuidstdcall.va_ens_Check_aesni_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val aesni_post:VSig.vale_post dom
[]
Vale.Stdcalls.X64.Cpuid.aesni_post
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_post Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 58, "end_line": 37, "start_col": 2, "start_line": 33 }
Prims.Tot
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let code_movbe = VC.va_code_Check_movbe_stdcall IA.win
let code_movbe =
false
null
false
VC.va_code_Check_movbe_stdcall IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.Lib.X64.Cpuidstdcall.va_code_Check_movbe_stdcall", "Vale.Interop.Assumptions.win" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val code_movbe : Vale.X64.Decls.va_code
[]
Vale.Stdcalls.X64.Cpuid.code_movbe
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.X64.Decls.va_code
{ "end_col": 54, "end_line": 306, "start_col": 17, "start_line": 306 }
Prims.Tot
val avx2_post:VSig.vale_post dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let avx2_post : VSig.vale_post dom = fun (c:V.va_code) (va_s0:V.va_state) (va_s1:V.va_state) (f:V.va_fuel) -> VC.va_ens_Check_avx2_stdcall c va_s0 IA.win va_s1 f
val avx2_post:VSig.vale_post dom let avx2_post:VSig.vale_post dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) (va_s1: V.va_state) (f: V.va_fuel) -> VC.va_ens_Check_avx2_stdcall c va_s0 IA.win va_s1 f
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.X64.Decls.va_fuel", "Vale.Lib.X64.Cpuidstdcall.va_ens_Check_avx2_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val avx2_post:VSig.vale_post dom
[]
Vale.Stdcalls.X64.Cpuid.avx2_post
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_post Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 57, "end_line": 236, "start_col": 2, "start_line": 232 }
Prims.Tot
[ { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, "full_module": "Vale.X64.MemoryAdapters", "short_module": null }, { "abbrev": true, "full_module": "Vale.AsLowStar.Wrapper", "short_module": "W" }, { "abbrev":...
false
let code_aesni = VC.va_code_Check_aesni_stdcall IA.win
let code_aesni =
false
null
false
VC.va_code_Check_aesni_stdcall IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.Lib.X64.Cpuidstdcall.va_code_Check_aesni_stdcall", "Vale.Interop.Assumptions.win" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val code_aesni : Vale.X64.Decls.va_code
[]
Vale.Stdcalls.X64.Cpuid.code_aesni
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.X64.Decls.va_code
{ "end_col": 54, "end_line": 59, "start_col": 17, "start_line": 59 }
Prims.Tot
val rdrand_pre:VSig.vale_pre dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let rdrand_pre : VSig.vale_pre dom = fun (c:V.va_code) (va_s0:V.va_state) -> VC.va_req_Check_rdrand_stdcall c va_s0 IA.win
val rdrand_pre:VSig.vale_pre dom let rdrand_pre:VSig.vale_pre dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) -> VC.va_req_Check_rdrand_stdcall c va_s0 IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.Lib.X64.Cpuidstdcall.va_req_Check_rdrand_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val rdrand_pre:VSig.vale_pre dom
[]
Vale.Stdcalls.X64.Cpuid.rdrand_pre
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_pre Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 51, "end_line": 372, "start_col": 2, "start_line": 370 }
Prims.Tot
val sha_post:VSig.vale_post dom
[ { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, "full_module": "Vale.X64.MemoryAdapters", "short_module": null }, { "abbrev": true, "full_module": "Vale.AsLowStar.Wrapper", "short_module": "W" }, { "abbrev":...
false
let sha_post : VSig.vale_post dom = fun (c:V.va_code) (va_s0:V.va_state) (va_s1:V.va_state) (f:V.va_fuel) -> VC.va_ens_Check_sha_stdcall c va_s0 IA.win va_s1 f
val sha_post:VSig.vale_post dom let sha_post:VSig.vale_post dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) (va_s1: V.va_state) (f: V.va_fuel) -> VC.va_ens_Check_sha_stdcall c va_s0 IA.win va_s1 f
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.X64.Decls.va_fuel", "Vale.Lib.X64.Cpuidstdcall.va_ens_Check_sha_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val sha_post:VSig.vale_post dom
[]
Vale.Stdcalls.X64.Cpuid.sha_post
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_post Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 56, "end_line": 86, "start_col": 2, "start_line": 82 }
Prims.Tot
val avx_post:VSig.vale_post dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let avx_post : VSig.vale_post dom = fun (c:V.va_code) (va_s0:V.va_state) (va_s1:V.va_state) (f:V.va_fuel) -> VC.va_ens_Check_avx_stdcall c va_s0 IA.win va_s1 f
val avx_post:VSig.vale_post dom let avx_post:VSig.vale_post dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) (va_s1: V.va_state) (f: V.va_fuel) -> VC.va_ens_Check_avx_stdcall c va_s0 IA.win va_s1 f
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.X64.Decls.va_fuel", "Vale.Lib.X64.Cpuidstdcall.va_ens_Check_avx_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val avx_post:VSig.vale_post dom
[]
Vale.Stdcalls.X64.Cpuid.avx_post
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_post Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 56, "end_line": 188, "start_col": 2, "start_line": 184 }
Prims.Tot
val osxsave_pre:VSig.vale_pre dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let osxsave_pre : VSig.vale_pre dom = fun (c:V.va_code) (va_s0:V.va_state) -> VC.va_req_Check_osxsave_stdcall c va_s0 IA.win
val osxsave_pre:VSig.vale_pre dom let osxsave_pre:VSig.vale_pre dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) -> VC.va_req_Check_osxsave_stdcall c va_s0 IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.Lib.X64.Cpuidstdcall.va_req_Check_osxsave_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val osxsave_pre:VSig.vale_pre dom
[]
Vale.Stdcalls.X64.Cpuid.osxsave_pre
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_pre Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 52, "end_line": 468, "start_col": 2, "start_line": 466 }
Prims.Tot
val avx_xcr0_pre:VSig.vale_pre dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let avx_xcr0_pre : VSig.vale_pre dom = fun (c:V.va_code) (va_s0:V.va_state) -> VC.va_req_Check_avx_xcr0_stdcall c va_s0 IA.win
val avx_xcr0_pre:VSig.vale_pre dom let avx_xcr0_pre:VSig.vale_pre dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) -> VC.va_req_Check_avx_xcr0_stdcall c va_s0 IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.Lib.X64.Cpuidstdcall.va_req_Check_avx_xcr0_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val avx_xcr0_pre:VSig.vale_pre dom
[]
Vale.Stdcalls.X64.Cpuid.avx_xcr0_pre
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_pre Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 53, "end_line": 516, "start_col": 2, "start_line": 514 }
Prims.Tot
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let code_avx2 = VC.va_code_Check_avx2_stdcall IA.win
let code_avx2 =
false
null
false
VC.va_code_Check_avx2_stdcall IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.Lib.X64.Cpuidstdcall.va_code_Check_avx2_stdcall", "Vale.Interop.Assumptions.win" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val code_avx2 : Vale.X64.Decls.va_code
[]
Vale.Stdcalls.X64.Cpuid.code_avx2
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.X64.Decls.va_code
{ "end_col": 52, "end_line": 258, "start_col": 16, "start_line": 258 }
Prims.Tot
val avx_pre:VSig.vale_pre dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let avx_pre : VSig.vale_pre dom = fun (c:V.va_code) (va_s0:V.va_state) -> VC.va_req_Check_avx_stdcall c va_s0 IA.win
val avx_pre:VSig.vale_pre dom let avx_pre:VSig.vale_pre dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) -> VC.va_req_Check_avx_stdcall c va_s0 IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.Lib.X64.Cpuidstdcall.va_req_Check_avx_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val avx_pre:VSig.vale_pre dom
[]
Vale.Stdcalls.X64.Cpuid.avx_pre
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_pre Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 48, "end_line": 180, "start_col": 2, "start_line": 178 }
Prims.Tot
val sse_pre:VSig.vale_pre dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let sse_pre : VSig.vale_pre dom = fun (c:V.va_code) (va_s0:V.va_state) -> VC.va_req_Check_sse_stdcall c va_s0 IA.win
val sse_pre:VSig.vale_pre dom let sse_pre:VSig.vale_pre dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) -> VC.va_req_Check_sse_stdcall c va_s0 IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.Lib.X64.Cpuidstdcall.va_req_Check_sse_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val sse_pre:VSig.vale_pre dom
[]
Vale.Stdcalls.X64.Cpuid.sse_pre
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_pre Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 48, "end_line": 324, "start_col": 2, "start_line": 322 }
Prims.Tot
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let code_avx = VC.va_code_Check_avx_stdcall IA.win
let code_avx =
false
null
false
VC.va_code_Check_avx_stdcall IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.Lib.X64.Cpuidstdcall.va_code_Check_avx_stdcall", "Vale.Interop.Assumptions.win" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val code_avx : Vale.X64.Decls.va_code
[]
Vale.Stdcalls.X64.Cpuid.code_avx
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.X64.Decls.va_code
{ "end_col": 50, "end_line": 210, "start_col": 15, "start_line": 210 }
Prims.Tot
val avx_xcr0_post:VSig.vale_post dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let avx_xcr0_post : VSig.vale_post dom = fun (c:V.va_code) (va_s0:V.va_state) (va_s1:V.va_state) (f:V.va_fuel) -> VC.va_ens_Check_avx_xcr0_stdcall c va_s0 IA.win va_s1 f
val avx_xcr0_post:VSig.vale_post dom let avx_xcr0_post:VSig.vale_post dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) (va_s1: V.va_state) (f: V.va_fuel) -> VC.va_ens_Check_avx_xcr0_stdcall c va_s0 IA.win va_s1 f
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.X64.Decls.va_fuel", "Vale.Lib.X64.Cpuidstdcall.va_ens_Check_avx_xcr0_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val avx_xcr0_post:VSig.vale_post dom
[]
Vale.Stdcalls.X64.Cpuid.avx_xcr0_post
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_post Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 61, "end_line": 524, "start_col": 2, "start_line": 520 }
Prims.Tot
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let code_adx = VC.va_code_Check_adx_bmi2_stdcall IA.win
let code_adx =
false
null
false
VC.va_code_Check_adx_bmi2_stdcall IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.Lib.X64.Cpuidstdcall.va_code_Check_adx_bmi2_stdcall", "Vale.Interop.Assumptions.win" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val code_adx : Vale.X64.Decls.va_code
[]
Vale.Stdcalls.X64.Cpuid.code_adx
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.X64.Decls.va_code
{ "end_col": 55, "end_line": 162, "start_col": 15, "start_line": 162 }
Prims.Tot
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let code_sse = VC.va_code_Check_sse_stdcall IA.win
let code_sse =
false
null
false
VC.va_code_Check_sse_stdcall IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.Lib.X64.Cpuidstdcall.va_code_Check_sse_stdcall", "Vale.Interop.Assumptions.win" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val code_sse : Vale.X64.Decls.va_code
[]
Vale.Stdcalls.X64.Cpuid.code_sse
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.X64.Decls.va_code
{ "end_col": 50, "end_line": 354, "start_col": 15, "start_line": 354 }
Prims.Tot
val adx_post:VSig.vale_post dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let adx_post : VSig.vale_post dom = fun (c:V.va_code) (va_s0:V.va_state) (va_s1:V.va_state) (f:V.va_fuel) -> VC.va_ens_Check_adx_bmi2_stdcall c va_s0 IA.win va_s1 f
val adx_post:VSig.vale_post dom let adx_post:VSig.vale_post dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) (va_s1: V.va_state) (f: V.va_fuel) -> VC.va_ens_Check_adx_bmi2_stdcall c va_s0 IA.win va_s1 f
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.X64.Decls.va_fuel", "Vale.Lib.X64.Cpuidstdcall.va_ens_Check_adx_bmi2_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val adx_post:VSig.vale_post dom
[]
Vale.Stdcalls.X64.Cpuid.adx_post
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_post Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 61, "end_line": 140, "start_col": 2, "start_line": 136 }
Prims.Tot
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let code_rdrand = VC.va_code_Check_rdrand_stdcall IA.win
let code_rdrand =
false
null
false
VC.va_code_Check_rdrand_stdcall IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.Lib.X64.Cpuidstdcall.va_code_Check_rdrand_stdcall", "Vale.Interop.Assumptions.win" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val code_rdrand : Vale.X64.Decls.va_code
[]
Vale.Stdcalls.X64.Cpuid.code_rdrand
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.X64.Decls.va_code
{ "end_col": 56, "end_line": 402, "start_col": 18, "start_line": 402 }
Prims.Tot
val avx512_xcr0_post:VSig.vale_post dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let avx512_xcr0_post : VSig.vale_post dom = fun (c:V.va_code) (va_s0:V.va_state) (va_s1:V.va_state) (f:V.va_fuel) -> VC.va_ens_Check_avx512_xcr0_stdcall c va_s0 IA.win va_s1 f
val avx512_xcr0_post:VSig.vale_post dom let avx512_xcr0_post:VSig.vale_post dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) (va_s1: V.va_state) (f: V.va_fuel) -> VC.va_ens_Check_avx512_xcr0_stdcall c va_s0 IA.win va_s1 f
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.X64.Decls.va_fuel", "Vale.Lib.X64.Cpuidstdcall.va_ens_Check_avx512_xcr0_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val avx512_xcr0_post:VSig.vale_post dom
[]
Vale.Stdcalls.X64.Cpuid.avx512_xcr0_post
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_post Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 64, "end_line": 572, "start_col": 2, "start_line": 568 }
Prims.Tot
val avx2_pre:VSig.vale_pre dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let avx2_pre : VSig.vale_pre dom = fun (c:V.va_code) (va_s0:V.va_state) -> VC.va_req_Check_avx2_stdcall c va_s0 IA.win
val avx2_pre:VSig.vale_pre dom let avx2_pre:VSig.vale_pre dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) -> VC.va_req_Check_avx2_stdcall c va_s0 IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.Lib.X64.Cpuidstdcall.va_req_Check_avx2_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val avx2_pre:VSig.vale_pre dom
[]
Vale.Stdcalls.X64.Cpuid.avx2_pre
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_pre Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 49, "end_line": 228, "start_col": 2, "start_line": 226 }
Prims.Tot
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let code_avx512_xcr0 = VC.va_code_Check_avx512_xcr0_stdcall IA.win
let code_avx512_xcr0 =
false
null
false
VC.va_code_Check_avx512_xcr0_stdcall IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.Lib.X64.Cpuidstdcall.va_code_Check_avx512_xcr0_stdcall", "Vale.Interop.Assumptions.win" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val code_avx512_xcr0 : Vale.X64.Decls.va_code
[]
Vale.Stdcalls.X64.Cpuid.code_avx512_xcr0
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.X64.Decls.va_code
{ "end_col": 66, "end_line": 594, "start_col": 23, "start_line": 594 }
Prims.Tot
val avx512_pre:VSig.vale_pre dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let avx512_pre : VSig.vale_pre dom = fun (c:V.va_code) (va_s0:V.va_state) -> VC.va_req_Check_avx512_stdcall c va_s0 IA.win
val avx512_pre:VSig.vale_pre dom let avx512_pre:VSig.vale_pre dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) -> VC.va_req_Check_avx512_stdcall c va_s0 IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.Lib.X64.Cpuidstdcall.va_req_Check_avx512_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val avx512_pre:VSig.vale_pre dom
[]
Vale.Stdcalls.X64.Cpuid.avx512_pre
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_pre Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 51, "end_line": 420, "start_col": 2, "start_line": 418 }
Prims.Tot
val osxsave_post:VSig.vale_post dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let osxsave_post : VSig.vale_post dom = fun (c:V.va_code) (va_s0:V.va_state) (va_s1:V.va_state) (f:V.va_fuel) -> VC.va_ens_Check_osxsave_stdcall c va_s0 IA.win va_s1 f
val osxsave_post:VSig.vale_post dom let osxsave_post:VSig.vale_post dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) (va_s1: V.va_state) (f: V.va_fuel) -> VC.va_ens_Check_osxsave_stdcall c va_s0 IA.win va_s1 f
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.X64.Decls.va_fuel", "Vale.Lib.X64.Cpuidstdcall.va_ens_Check_osxsave_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val osxsave_post:VSig.vale_post dom
[]
Vale.Stdcalls.X64.Cpuid.osxsave_post
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_post Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 60, "end_line": 476, "start_col": 2, "start_line": 472 }
Prims.Tot
val sha_pre:VSig.vale_pre dom
[ { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, "full_module": "Vale.X64.MemoryAdapters", "short_module": null }, { "abbrev": true, "full_module": "Vale.AsLowStar.Wrapper", "short_module": "W" }, { "abbrev":...
false
let sha_pre : VSig.vale_pre dom = fun (c:V.va_code) (va_s0:V.va_state) -> VC.va_req_Check_sha_stdcall c va_s0 IA.win
val sha_pre:VSig.vale_pre dom let sha_pre:VSig.vale_pre dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) -> VC.va_req_Check_sha_stdcall c va_s0 IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.Lib.X64.Cpuidstdcall.va_req_Check_sha_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val sha_pre:VSig.vale_pre dom
[]
Vale.Stdcalls.X64.Cpuid.sha_pre
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_pre Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 48, "end_line": 78, "start_col": 2, "start_line": 76 }
Prims.Tot
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let code_sha = VC.va_code_Check_sha_stdcall IA.win
let code_sha =
false
null
false
VC.va_code_Check_sha_stdcall IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.Lib.X64.Cpuidstdcall.va_code_Check_sha_stdcall", "Vale.Interop.Assumptions.win" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val code_sha : Vale.X64.Decls.va_code
[]
Vale.Stdcalls.X64.Cpuid.code_sha
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.X64.Decls.va_code
{ "end_col": 50, "end_line": 113, "start_col": 15, "start_line": 113 }
Prims.Tot
val movbe_pre:VSig.vale_pre dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let movbe_pre : VSig.vale_pre dom = fun (c:V.va_code) (va_s0:V.va_state) -> VC.va_req_Check_movbe_stdcall c va_s0 IA.win
val movbe_pre:VSig.vale_pre dom let movbe_pre:VSig.vale_pre dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) -> VC.va_req_Check_movbe_stdcall c va_s0 IA.win
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.Lib.X64.Cpuidstdcall.va_req_Check_movbe_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val movbe_pre:VSig.vale_pre dom
[]
Vale.Stdcalls.X64.Cpuid.movbe_pre
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_pre Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 50, "end_line": 276, "start_col": 2, "start_line": 274 }
Prims.Tot
val sse_post:VSig.vale_post dom
[ { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": true, "full_module": "Vale.Lib.X64.Cpuidstdcall", "short_module": "VC" }, { "abbrev": false, ...
false
let sse_post : VSig.vale_post dom = fun (c:V.va_code) (va_s0:V.va_state) (va_s1:V.va_state) (f:V.va_fuel) -> VC.va_ens_Check_sse_stdcall c va_s0 IA.win va_s1 f
val sse_post:VSig.vale_post dom let sse_post:VSig.vale_post dom =
false
null
false
fun (c: V.va_code) (va_s0: V.va_state) (va_s1: V.va_state) (f: V.va_fuel) -> VC.va_ens_Check_sse_stdcall c va_s0 IA.win va_s1 f
{ "checked_file": "Vale.Stdcalls.X64.Cpuid.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.MemoryAdapters.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Decls.fsti.checked", "Vale.Lib.X64.Cpuidstdcall.fsti.checked", "Vale.Interop.X64.fsti.checked", "...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Vale.X64.Decls.va_fuel", "Vale.Lib.X64.Cpuidstdcall.va_ens_Check_sse_stdcall", "Vale.Interop.Assumptions.win", "Prims.prop" ]
[]
module Vale.Stdcalls.X64.Cpuid open FStar.Mul open Vale.Interop.Base module IX64 = Vale.Interop.X64 module VSig = Vale.AsLowStar.ValeSig module LSig = Vale.AsLowStar.LowStarSig module V = Vale.X64.Decls module IA = Vale.Interop.Assumptions module W = Vale.AsLowStar.Wrapper open Vale.X64.MemoryAdapters module VC = Val...
false
true
Vale.Stdcalls.X64.Cpuid.fsti
{ "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...
null
val sse_post:VSig.vale_post dom
[]
Vale.Stdcalls.X64.Cpuid.sse_post
{ "file_name": "vale/code/arch/x64/interop/Vale.Stdcalls.X64.Cpuid.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Vale.AsLowStar.ValeSig.vale_post Vale.Stdcalls.X64.Cpuid.dom
{ "end_col": 56, "end_line": 332, "start_col": 2, "start_line": 328 }