├── doc ├── _static │ └── .gitignore └── diagram.png ├── code ├── streaming │ ├── nohup.out │ ├── Makefile │ └── AUTHORS.md ├── hpke │ └── Hacl.Meta.HPKE.fsti ├── poly1305 │ └── Hacl.Meta.Poly1305.fsti ├── curve25519 │ └── Hacl.Meta.Curve25519.fsti ├── fallback │ ├── AUTHORS.md │ └── Makefile ├── old │ └── README.md ├── meta │ ├── AUTHORS.md │ ├── Makefile │ └── Meta.Attribute.fst ├── ffdhe │ └── AUTHORS.md ├── rsapss │ └── AUTHORS.md ├── drbg │ ├── AUTHORS.md │ └── Makefile ├── k256 │ └── AUTHORS.md ├── hash │ └── Makefile ├── hkdf │ └── Makefile ├── hmac │ └── Makefile ├── sha3 │ ├── Makefile │ └── AUTHORS.md ├── tests │ └── Makefile ├── nacl-box │ └── Makefile ├── salsa20 │ └── Makefile ├── blake2 │ └── AUTHORS.md └── frodo │ └── AUTHORS.md ├── dist ├── wasm │ ├── Makefile.basic │ ├── Vale.wasm │ ├── FStar.wasm │ ├── Hacl_HKDF.wasm │ ├── Hacl_HMAC.wasm │ ├── Hacl_NaCl.wasm │ ├── Hacl_P256.wasm │ ├── Hacl_SHA3.wasm │ ├── LowStar.wasm │ ├── Hacl_Bignum.wasm │ ├── WasmSupport.wasm │ ├── EverCrypt_Hash.wasm │ ├── Hacl_Bignum256.wasm │ ├── Hacl_Bignum32.wasm │ ├── Hacl_Bignum64.wasm │ ├── Hacl_Chacha20.wasm │ ├── Hacl_Ed25519.wasm │ ├── Hacl_Hash_Base.wasm │ ├── Hacl_Hash_MD5.wasm │ ├── Hacl_Hash_SHA1.wasm │ ├── Hacl_Hash_SHA2.wasm │ ├── Hacl_Salsa20.wasm │ ├── Hacl_Streaming.wasm │ ├── Hacl_Bignum4096.wasm │ ├── Hacl_EC_Ed25519.wasm │ ├── Hacl_Hash_Blake2.wasm │ ├── Hacl_Poly1305_32.wasm │ ├── Steel_Reference.wasm │ ├── EverCrypt_EverCrypt.wasm │ ├── Hacl_Bignum25519_51.wasm │ ├── Hacl_Bignum256_32.wasm │ ├── Hacl_Bignum4096_32.wasm │ ├── Hacl_Chacha20_Vec32.wasm │ ├── Hacl_Curve25519_51.wasm │ ├── Hacl_GenericField32.wasm │ ├── Hacl_GenericField64.wasm │ ├── LowStar_Endianness.wasm │ ├── EverCrypt_TargetConfig.wasm │ ├── Hacl_Chacha20Poly1305_32.wasm │ └── Hacl_IntTypes_Intrinsics.wasm └── test │ ├── c │ └── Makefile.include │ └── ml │ ├── Spec_AES_Test_AutoTest.ml │ ├── Spec_Box_Test_AutoTest.ml │ ├── Spec_HKDF_Test_AutoTest.ml │ ├── Spec_HMAC_Test_AutoTest.ml │ ├── Spec_Hash_Test_AutoTest.ml │ ├── Spec_K256_Test_AutoTest.ml │ ├── Spec_SHA2_Test_AutoTest.ml │ ├── Spec_SHA3_Test_AutoTest.ml │ ├── Spec_Frodo_Test_AutoTest.ml │ ├── Spec_Blake2_Test_AutoTest.ml │ ├── Spec_Ed25519_Test_AutoTest.ml │ ├── Spec_Salsa20_Test_AutoTest.ml │ ├── Spec_Chacha20_Test_AutoTest.ml │ ├── Spec_HMAC_DRBG_Test_AutoTest.ml │ ├── Spec_Poly1305_Test_AutoTest.ml │ └── Spec_SecretBox_Test_AutoTest.ml ├── bindings ├── js │ ├── .npmignore │ ├── doc │ │ └── .gitignore │ └── package-lock.json └── ocaml │ ├── dune-project │ ├── .gitignore │ └── index.mld ├── vale ├── .tested_z3_version ├── .vale_version ├── doc │ └── .gitattributes ├── .tested_fstar_version ├── code │ ├── arch │ │ ├── Makefile │ │ └── x64 │ │ │ └── Makefile │ ├── test │ │ └── TestInlineMain.ml │ ├── crypto │ │ ├── sha │ │ │ └── Makefile │ │ ├── poly1305 │ │ │ ├── Makefile │ │ │ └── x64 │ │ │ │ └── Makefile │ │ └── ecc │ │ │ └── curve25519 │ │ │ └── Makefile │ └── lib │ │ └── transformers │ │ └── Makefile └── specs │ ├── crypto │ ├── Vale.AES.GF128_s.fst │ └── Makefile │ ├── defs │ ├── Vale.Def.Words.Four_s.fst │ └── Vale.Def.Words.Two_s.fst │ ├── hardware │ └── Makefile │ └── interop │ └── Makefile ├── obj └── .gitignore ├── tests ├── merkle_tree_test.h └── tests-openssl │ ├── jasmin-poly-avx2 │ ├── impl.h │ └── api.h │ └── jasmin-chacha-avx2 │ ├── impl.h │ └── api.h ├── providers ├── test │ ├── vectors │ │ └── .merlin │ └── Makefile └── evercrypt │ ├── Makefile │ └── fst │ └── Makefile ├── secure_api ├── vale │ ├── asm │ │ ├── .gitignore │ │ └── benchmark-Darwin │ └── README.md └── merkle_tree │ ├── .gitignore │ └── Makefile ├── specs ├── old │ └── README.md ├── frodo │ ├── Makefile │ └── AUTHORS.md ├── lemmas │ └── Makefile └── tests │ ├── Makefile │ └── Spec.Frodo.Test.fsti └── hints ├── Test.fst.hints ├── Test.fsti.hints ├── Cipher16.fst.hints ├── Client.fst.hints ├── Example.fst.hints ├── Lib.Meta.fst.hints ├── Spec.AES.fst.hints ├── Spec.Box.fst.hints ├── Spec.DH.fst.hints ├── Spec.MD5.fst.hints ├── X64.Util.fst.hints ├── Cipher16.fsti.hints ├── EverCrypt.fst.hints ├── EverCrypt.fsti.hints ├── Hacl.FFDHE.fst.hints ├── Hacl.HKDF.fst.hints ├── Hacl.HKDF.fsti.hints ├── Hacl.HMAC.fst.hints ├── Hacl.HMAC.fsti.hints ├── Hacl.NaCl.fst.hints ├── Hacl.P256.fst.hints ├── Hacl.P256.fsti.hints ├── Hacl.SHA3.fst.hints ├── Interface.fsti.hints ├── Lib.Buffer.fst.hints ├── Lib.Lemmas.fst.hints ├── Lib.Loops.fst.hints ├── Lib.Loops.fsti.hints ├── Lib.NTuple.fst.hints ├── Lib.NatMod.fst.hints ├── Lib.Unlib.fst.hints ├── Lib.Unlib.fsti.hints ├── Spec.AEAD.fst.hints ├── Spec.AEAD.fsti.hints ├── Spec.ECDSA.fst.hints ├── Spec.FFDHE.fst.hints ├── Spec.HKDF.fst.hints ├── Spec.HKDF.fsti.hints ├── Spec.HMAC.fst.hints ├── Spec.HMAC.fsti.hints ├── Spec.Hash.fst.hints ├── Spec.K256.fst.hints ├── Spec.Loops.fst.hints ├── Spec.MD5.fsti.hints ├── Spec.P256.fst.hints ├── Spec.SHA1.fst.hints ├── Spec.SHA1.fsti.hints ├── Spec.SHA2.fst.hints ├── Spec.SHA2.fsti.hints ├── Spec.SHA3.fst.hints ├── Test.Bytes.fst.hints ├── Test.Hash.fst.hints ├── X64.Util.fsti.hints ├── EverCrypt.CTR.fst.hints ├── Fast_stdcalls.fst.hints ├── Frodo.Params.fst.hints ├── Hacl.AES128.fsti.hints ├── Hacl.Bignum.fst.hints ├── Hacl.Bignum.fsti.hints ├── Hacl.Bignum32.fst.hints ├── Hacl.Bignum64.fst.hints ├── Hacl.Chacha20.fst.hints ├── Hacl.EC.K256.fst.hints ├── Hacl.Ed25519.fst.hints ├── Hacl.Ed25519.fsti.hints ├── Hacl.Frodo64.fst.hints ├── Hacl.Frodo640.fst.hints ├── Hacl.Frodo976.fst.hints ├── Hacl.Hash.MD.fst.hints ├── Hacl.Hash.MD.fsti.hints ├── Hacl.Hash.MD5.fst.hints ├── Hacl.Impl.Box.fst.hints ├── Hacl.Impl.Lib.fst.hints ├── Hacl.Impl.MGF.fst.hints ├── Hacl.Keccak.fst.hints ├── Hacl.Keccak.fsti.hints ├── Hacl.RSAPSS.fst.hints ├── Hacl.Salsa20.fst.hints ├── Hacl.Spec.DH.fst.hints ├── Hacl.Spec.Lib.fst.hints ├── Lib.Buffer.fsti.hints ├── Lib.CreateN.fsti.hints ├── Lib.IntTypes.fst.hints ├── Lib.IntTypes.fsti.hints ├── Lib.IntVector.fst.hints ├── Lib.Memzero.fsti.hints ├── Lib.Memzero0.fsti.hints ├── Lib.NTuple.fsti.hints ├── Lib.NatMod.fsti.hints ├── Lib.RawBuffer.fst.hints ├── Lib.Sequence.fst.hints ├── Lib.Sequence.fsti.hints ├── MerkleTree.fsti.hints ├── MetaAttribute.fst.hints ├── MetaInterface.fst.hints ├── Spec.AES.Test.fst.hints ├── Spec.Agile.DH.fst.hints ├── Spec.Blake2.fst.hints ├── Spec.Box.Test.fst.hints ├── Spec.Chacha20.fst.hints ├── Spec.Ed25519.fst.hints ├── Spec.Matrix.fst.hints ├── Spec.Poly1305.fst.hints ├── Spec.RSAPSS.fst.hints ├── Spec.Salsa20.fst.hints ├── Test.NoHeap.fst.hints ├── Test.NoHeap.fsti.hints ├── Test.Vectors.fst.hints ├── Vale.AES.GCM.fst.hints ├── Vale.AES.GCM.fsti.hints ├── Vale.AES.GCTR.fst.hints ├── Vale.Interop.fst.hints ├── Vale.Interop.fsti.hints ├── Vale.Lib.Bv_s.fst.hints ├── Vale.Lib.Meta.fst.hints ├── Vale.Lib.Seqs.fst.hints ├── Vale.Lib.Set.fst.hints ├── Vale.Lib.Set.fsti.hints ├── Vale.SHA.X64.fst.hints ├── Vale.SHA.X64.fsti.hints ├── Vale.X64.Regs.fst.hints ├── Vale.X64.Xmms.fst.hints ├── WasmSupport.fst.hints ├── CanonCommMonoid.fst.hints ├── CanonCommSwaps.fst.hints ├── EverCrypt.AEAD.fst.hints ├── EverCrypt.AEAD.fsti.hints ├── EverCrypt.CTR.fsti.hints ├── EverCrypt.DRBG.fst.hints ├── EverCrypt.DRBG.fsti.hints ├── EverCrypt.HKDF.fst.hints ├── EverCrypt.HKDF.fsti.hints ├── EverCrypt.HMAC.fst.hints ├── EverCrypt.HMAC.fsti.hints ├── EverCrypt.Hacl.fsti.hints ├── EverCrypt.Hash.fst.hints ├── EverCrypt.Hash.fsti.hints ├── EverCrypt.Vale.fsti.hints ├── EverCrypt.Wasm.fsti.hints ├── Fast_stdcalls.fsti.hints ├── Hacl.Bignum.Lib.fst.hints ├── Hacl.Bignum256.fst.hints ├── Hacl.Bignum256.fsti.hints ├── Hacl.Bignum32.fsti.hints ├── Hacl.Bignum4096.fst.hints ├── Hacl.Bignum64.fsti.hints ├── Hacl.Blake2b_32.fst.hints ├── Hacl.Blake2s_32.fst.hints ├── Hacl.EC.Ed25519.fst.hints ├── Hacl.FFDHE4096.fst.hints ├── Hacl.FFDHE4096.fsti.hints ├── Hacl.Frodo.KEM.fst.hints ├── Hacl.Frodo1344.fst.hints ├── Hacl.HMAC_DRBG.fst.hints ├── Hacl.HMAC_DRBG.fsti.hints ├── Hacl.Hash.Agile.fst.hints ├── Hacl.Hash.MD5.fsti.hints ├── Hacl.Hash.SHA1.fst.hints ├── Hacl.Hash.SHA1.fsti.hints ├── Hacl.Hash.SHA2.fst.hints ├── Hacl.Hash.SHA2.fsti.hints ├── Hacl.Impl.ECDSA.fst.hints ├── Hacl.Impl.FFDHE.fst.hints ├── Hacl.Impl.HPKE.fst.hints ├── Hacl.Impl.HPKE.fsti.hints ├── Hacl.Impl.P256.fst.hints ├── Hacl.Impl.P256.fsti.hints ├── Hacl.Impl.SHA3.fst.hints ├── Hacl.K256.ECDSA.fst.hints ├── Hacl.K256.Field.fst.hints ├── Hacl.Meta.HPKE.fst.hints ├── Hacl.Meta.HPKE.fsti.hints ├── Hacl.Spec.ECDSA.fst.hints ├── Hacl.Spec.P256.fst.hints ├── Hacl.Spec.SHA2.fst.hints ├── Hacl.Test.ECDSA.fst.hints ├── Hacl.Test.K256.fst.hints ├── Hacl.Test.SHA2.fst.hints ├── Hacl.Test.SHA3.fst.hints ├── Interop_Printer.fst.hints ├── Lib.ByteBuffer.fst.hints ├── Lib.ByteBuffer.fsti.hints ├── Lib.CurveLemmas.fst.hints ├── Lib.IntVector.fsti.hints ├── Lib.MultiBuffer.fst.hints ├── Lib.RawBuffer.fsti.hints ├── Lib.RawIntTypes.fst.hints ├── Lib.UpdateMulti.fst.hints ├── Lib.Vec.Lemmas.fst.hints ├── Lib.Vec.Lemmas.fsti.hints ├── MerkleTree.Low.fst.hints ├── MerkleTree.Spec.fst.hints ├── Meta.Attribute.fst.hints ├── Meta.Interface.fst.hints ├── Spec.Agile.AEAD.fst.hints ├── Spec.Agile.CTR.fst.hints ├── Spec.Agile.HKDF.fst.hints ├── Spec.Agile.HMAC.fst.hints ├── Spec.Agile.HPKE.fst.hints ├── Spec.Agile.Hash.fst.hints ├── Spec.Cipher16.fsti.hints ├── Spec.Curve25519.fst.hints ├── Spec.Frodo.Gen.fst.hints ├── Spec.Frodo.KEM.fst.hints ├── Spec.Frodo.Pack.fst.hints ├── Spec.Frodo.Test.fst.hints ├── Spec.HKDF.Test.fst.hints ├── Spec.HMAC.Test.fst.hints ├── Spec.HMAC_DRBG.fst.hints ├── Spec.HMAC_DRBG.fsti.hints ├── Spec.HPKE.Test.fst.hints ├── Spec.HPKE.Test.fsti.hints ├── Spec.Hash.Test.fst.hints ├── Spec.K256.Test.fst.hints ├── Spec.SHA2.Test.fst.hints ├── Spec.SHA3.Test.fst.hints ├── Spec.SecretBox.fst.hints ├── Test.Lowstarize.fst.hints ├── Vale.AES.AES_s.fst.hints ├── Vale.AES.GCM_s.fst.hints ├── Vale.AES.GCTR.fsti.hints ├── Vale.AES.GCTR_s.fst.hints ├── Vale.AES.GF128.fst.hints ├── Vale.AES.GF128.fsti.hints ├── Vale.AES.GHash.fst.hints ├── Vale.AES.GHash.fsti.hints ├── Vale.Arch.Heap.fst.hints ├── Vale.Arch.Heap.fsti.hints ├── Vale.Arch.Types.fst.hints ├── Vale.Bignum.X64.fst.hints ├── Vale.Def.Prop_s.fst.hints ├── Vale.Lib.Basic.fst.hints ├── Vale.Lib.Basic.fsti.hints ├── Vale.Lib.Lists.fst.hints ├── Vale.Lib.Lists.fsti.hints ├── Vale.Lib.Map16.fst.hints ├── Vale.Lib.Map16.fsti.hints ├── Vale.Lib.Meta.fsti.hints ├── Vale.Lib.Seqs.fsti.hints ├── Vale.Lib.Seqs_s.fst.hints ├── Vale.Math.Bits.fst.hints ├── Vale.Math.Bits.fsti.hints ├── Vale.Math.Poly2.fst.hints ├── Vale.X64.Decls.fst.hints ├── Vale.X64.Decls.fsti.hints ├── Vale.X64.Flags.fst.hints ├── Vale.X64.Flags.fsti.hints ├── Vale.X64.InsAes.fst.hints ├── Vale.X64.InsMem.fst.hints ├── Vale.X64.InsSha.fst.hints ├── Vale.X64.Lemmas.fst.hints ├── Vale.X64.Memory.fst.hints ├── Vale.X64.Regs.fsti.hints ├── Vale.X64.Stack.fst.hints ├── Vale.X64.Stack.fsti.hints ├── Vale.X64.State.fst.hints ├── Vale.X64.State.fsti.hints ├── Vale.X64.Xmms.fsti.hints ├── X64.AESstdcall.fst.hints ├── X64.AESstdcall.fsti.hints ├── X64.GCTRstdcall.fst.hints ├── CanonCommSemiring.fst.hints ├── EverCrypt.BCrypt.fsti.hints ├── EverCrypt.Bytes.fsti.hints ├── EverCrypt.CTR.Keys.fst.hints ├── EverCrypt.Cipher.fst.hints ├── EverCrypt.Cipher.fsti.hints ├── EverCrypt.Ciphers.fst.hints ├── EverCrypt.Ciphers.fsti.hints ├── EverCrypt.Ed25519.fst.hints ├── EverCrypt.Ed25519.fsti.hints ├── EverCrypt.Error.fsti.hints ├── EverCrypt.Helpers.fsti.hints ├── EverCrypt.OpenSSL.fsti.hints ├── EverCrypt.Poly1305.fst.hints ├── EverCrypt.Specs.fsti.hints ├── Hacl.Bignum.Base.fst.hints ├── Hacl.Bignum.ExpBM.fst.hints ├── Hacl.Bignum.ExpBM.fsti.hints ├── Hacl.Bignum.ExpFW.fst.hints ├── Hacl.Bignum.ExpFW.fsti.hints ├── Hacl.Bignum.ModInv.fst.hints ├── Hacl.Bignum25519.fst.hints ├── Hacl.Bignum25519.fsti.hints ├── Hacl.Bignum256_32.fst.hints ├── Hacl.Bignum256_32.fsti.hints ├── Hacl.Bignum4096.fsti.hints ├── Hacl.Bignum4096_32.fst.hints ├── Hacl.Blake2b_256.fst.hints ├── Hacl.Blake2s_128.fst.hints ├── Hacl.Curve25519_51.fst.hints ├── Hacl.Curve25519_64.fst.hints ├── Hacl.Frodo.Random.fst.hints ├── Hacl.Frodo.Random.fsti.hints ├── Hacl.Hash.Blake2.fst.hints ├── Hacl.Hash.Blake2.fsti.hints ├── Hacl.Hash.Core.MD5.fst.hints ├── Hacl.Hash.Lemmas.fst.hints ├── Hacl.Impl.Chacha20.fst.hints ├── Hacl.Impl.ECDSA.fsti.hints ├── Hacl.Impl.HSalsa20.fst.hints ├── Hacl.Impl.Load56.fst.hints ├── Hacl.Impl.LowLevel.fst.hints ├── Hacl.Impl.Matrix.fst.hints ├── Hacl.Impl.P256.DH.fst.hints ├── Hacl.Impl.P256.DH.fsti.hints ├── Hacl.Impl.Poly1305.fst.hints ├── Hacl.Impl.RSAKeys.fst.hints ├── Hacl.Impl.RSAPSS.fst.hints ├── Hacl.Impl.Salsa20.fst.hints ├── Hacl.Impl.Store56.fst.hints ├── Hacl.K256.ECDSA.fsti.hints ├── Hacl.K256.Field.fsti.hints ├── Hacl.K256.Scalar.fst.hints ├── Hacl.K256.Scalar.fsti.hints ├── Hacl.Loops.Lemmas.fst.hints ├── Hacl.Loops.Lemmas.fsti.hints ├── Hacl.Meta.Poly1305.fst.hints ├── Hacl.Poly1305_128.fst.hints ├── Hacl.Poly1305_128.fsti.hints ├── Hacl.Poly1305_256.fst.hints ├── Hacl.Poly1305_256.fsti.hints ├── Hacl.Poly1305_32.fst.hints ├── Hacl.Poly1305_32.fsti.hints ├── Hacl.SHA2.Scalar32.fst.hints ├── Hacl.SHA2.Vec128.fst.hints ├── Hacl.SHA2.Vec256.fst.hints ├── Hacl.Spec.Bignum.fst.hints ├── Hacl.Spec.Bignum.fsti.hints ├── Hacl.Spec.RSAPSS.fst.hints ├── Hacl.Spec.SHA2.Vec.fst.hints ├── Hacl.Streaming.MD.fst.hints ├── Hacl.Streaming.MD5.fst.hints ├── Hacl.Test.CSHAKE.fst.hints ├── Hacl.Test.Ed25519.fst.hints ├── Lib.ByteSequence.fst.hints ├── Lib.ByteSequence.fsti.hints ├── Lib.Exponentiation.fst.hints ├── Lib.PrintBuffer.fsti.hints ├── Lib.PrintSequence.fst.hints ├── Lib.PrintSequence.fsti.hints ├── Lib.RandomBuffer.fsti.hints ├── Lib.RawIntTypes.fsti.hints ├── Spec.Agile.AEAD.fsti.hints ├── Spec.Agile.Cipher.fst.hints ├── Spec.Agile.Cipher.fsti.hints ├── Spec.Agile.HKDF.fsti.hints ├── Spec.Agile.HMAC.fsti.hints ├── Spec.Agile.HPKE.fsti.hints ├── Spec.Agile.Hash.fsti.hints ├── Spec.Blake2.Test.fst.hints ├── Spec.Chacha20.Test.fst.hints ├── Spec.Ed25519.Test.fst.hints ├── Spec.Frodo.Encode.fst.hints ├── Spec.Frodo.Lemmas.fst.hints ├── Spec.Frodo.Lemmas.fsti.hints ├── Spec.Frodo.Params.fst.hints ├── Spec.Frodo.Random.fst.hints ├── Spec.Frodo.Sample.fst.hints ├── Spec.Frodo.Test.fsti.hints ├── Spec.GaloisField.fst.hints ├── Spec.Hash.Lemmas.fst.hints ├── Spec.Hash.Lemmas.fsti.hints ├── Spec.Hash.Lemmas0.fst.hints ├── Spec.K256.Lemmas.fst.hints ├── Spec.K256.Lemmas.fsti.hints ├── Spec.K256.PointOps.fst.hints ├── Spec.P256.Ladder.fst.hints ├── Spec.P256.Lemmas.fst.hints ├── Spec.Poly1305.Test.fst.hints ├── Spec.SHA2.Lemmas.fst.hints ├── Spec.SHA2.Lemmas.fsti.hints ├── Spec.Salsa20.Test.fst.hints ├── Vale.AES.GF128_s.fst.hints ├── Vale.AES.GF128_s.fsti.hints ├── Vale.AES.GHash_s.fst.hints ├── Vale.AES.OptPublic.fst.hints ├── Vale.AES.X64.AES.fst.hints ├── Vale.AES.X64.AES.fsti.hints ├── Vale.AES.X64.GCTR.fst.hints ├── Vale.AES.X64.GCTR.fsti.hints ├── Vale.AES.X64.GHash.fst.hints ├── Vale.Arch.HeapImpl.fst.hints ├── Vale.Arch.Types.fsti.hints ├── Vale.Bignum.Defs.fst.hints ├── Vale.Bignum.Defs.fsti.hints ├── Vale.Bignum.Lemmas.fst.hints ├── Vale.Bignum.X64.fsti.hints ├── Vale.Def.Opaque_s.fst.hints ├── Vale.Def.Opaque_s.fsti.hints ├── Vale.Def.Types_s.fst.hints ├── Vale.Def.Words.Seq.fst.hints ├── Vale.Def.Words.Two.fst.hints ├── Vale.Def.Words_s.fst.hints ├── Vale.Def.Words_s.fsti.hints ├── Vale.FDefMulx.X64.fst.hints ├── Vale.FDefMulx.X64.fsti.hints ├── Vale.Interop.Base.fst.hints ├── Vale.Interop.Cast.fst.hints ├── Vale.Interop.Cast.fsti.hints ├── Vale.Interop.Types.fst.hints ├── Vale.Interop.Views.fst.hints ├── Vale.Interop.X64.fst.hints ├── Vale.Interop.X64.fsti.hints ├── Vale.Lib.MapTree.fst.hints ├── Vale.Lib.MapTree.fsti.hints ├── Vale.Lib.Operator.fst.hints ├── Vale.Lib.Operator.fsti.hints ├── Vale.Lib.Tactics.fst.hints ├── Vale.Lib.X64.Cpuid.fst.hints ├── Vale.Math.Poly2.fsti.hints ├── Vale.Math.Poly2_s.fst.hints ├── Vale.Math.Poly2_s.fsti.hints ├── Vale.Poly1305.Math.fst.hints ├── Vale.Poly1305.Util.fst.hints ├── Vale.Poly1305.X64.fst.hints ├── Vale.Poly1305.X64.fsti.hints ├── Vale.Test.X64.Args.fst.hints ├── Vale.X64.InsAes.fsti.hints ├── Vale.X64.InsBasic.fst.hints ├── Vale.X64.InsBasic.fsti.hints ├── Vale.X64.InsLemmas.fst.hints ├── Vale.X64.InsMem.fsti.hints ├── Vale.X64.InsSha.fsti.hints ├── Vale.X64.InsStack.fst.hints ├── Vale.X64.InsStack.fsti.hints ├── Vale.X64.InsVector.fst.hints ├── Vale.X64.Leakage.fst.hints ├── Vale.X64.Leakage.fsti.hints ├── Vale.X64.Leakage_s.fst.hints ├── Vale.X64.Lemmas.fsti.hints ├── Vale.X64.Machine_s.fst.hints ├── Vale.X64.Memory.fsti.hints ├── Vale.X64.Print_s.fst.hints ├── Vale.X64.QuickCode.fst.hints ├── Vale.X64.Stack_i.fst.hints ├── Vale.X64.Stack_i.fsti.hints ├── X64.GCTRstdcall.fsti.hints ├── X64.GHashstdcall.fst.hints ├── X64.GHashstdcall.fsti.hints ├── EverCrypt.CTR.Keys.fsti.hints ├── EverCrypt.Curve25519.fst.hints ├── EverCrypt.Poly1305.fsti.hints ├── Hacl.Bignum.Addition.fst.hints ├── Hacl.Bignum.Convert.fst.hints ├── Hacl.Bignum.ModInv64.fst.hints ├── Hacl.Bignum.SafeAPI.fst.hints ├── Hacl.Bignum4096_32.fsti.hints ├── Hacl.Chacha20.Vec128.fst.hints ├── Hacl.Chacha20.Vec256.fst.hints ├── Hacl.Chacha20.Vec32.fst.hints ├── Hacl.Curve25519_51.fsti.hints ├── Hacl.Curve25519_64.fsti.hints ├── Hacl.GenericField32.fst.hints ├── Hacl.GenericField32.fsti.hints ├── Hacl.GenericField64.fst.hints ├── Hacl.GenericField64.fsti.hints ├── Hacl.Hash.Core.MD5.fsti.hints ├── Hacl.Hash.Core.SHA1.fst.hints ├── Hacl.Hash.Core.SHA1.fsti.hints ├── Hacl.Hash.Core.SHA2.fst.hints ├── Hacl.Hash.Core.SHA2.fsti.hints ├── Hacl.Hash.PadFinish.fst.hints ├── Hacl.Hash.PadFinish.fsti.hints ├── Hacl.Impl.Frodo.Gen.fst.hints ├── Hacl.Impl.Frodo.KEM.fst.hints ├── Hacl.Impl.Frodo.Pack.fst.hints ├── Hacl.Impl.K256.Finv.fst.hints ├── Hacl.Impl.K256.Point.fst.hints ├── Hacl.Impl.K256.Qinv.fst.hints ├── Hacl.Impl.K256.Sign.fst.hints ├── Hacl.Impl.P256.Core.fst.hints ├── Hacl.Impl.P256.Core.fsti.hints ├── Hacl.Impl.P256.Math.fst.hints ├── Hacl.Impl.Poly1305.fsti.hints ├── Hacl.Impl.RSAPSS.MGF.fst.hints ├── Hacl.Impl.SHA2.Core.fst.hints ├── Hacl.Impl.SecretBox.fst.hints ├── Hacl.Meta.Curve25519.fst.hints ├── Hacl.Meta.Poly1305.fsti.hints ├── Hacl.Spec.Bignum.Lib.fst.hints ├── Hacl.Spec.K256.Finv.fst.hints ├── Hacl.Spec.K256.Qinv.fst.hints ├── Hacl.Spec.P256.Felem.fst.hints ├── Hacl.Spec.SHA2.Equiv.fst.hints ├── Hacl.Streaming.SHA1.fst.hints ├── Hacl.Streaming.SHA2.fst.hints ├── Hacl.Streaming.Spec.fst.hints ├── Hacl.Test.HMAC_DRBG.fst.hints ├── Lib.Exponentiation.fsti.hints ├── Lib.LoopCombinators.fst.hints ├── Lib.LoopCombinators.fsti.hints ├── Lib.RandomSequence.fsti.hints ├── Lib.Sequence.Lemmas.fst.hints ├── Lib.Sequence.Lemmas.fsti.hints ├── MerkleTree.EverCrypt.fst.hints ├── MerkleTree.New.High.fst.hints ├── Spec.Curve25519.Test.fst.hints ├── Spec.Ed25519.Lemmas.fst.hints ├── Spec.Ed25519.Lemmas.fsti.hints ├── Spec.Exponentiation.fst.hints ├── Spec.Exponentiation.fsti.hints ├── Spec.HMAC_DRBG.Test.fst.hints ├── Spec.Hash.PadFinish.fst.hints ├── Spec.SHA2.Constants.fst.hints ├── Spec.SHA3.Constants.fst.hints ├── Spec.SecretBox.Test.fst.hints ├── Test.Vectors.Aes128.fst.hints ├── Vale.AES.AES_helpers.fst.hints ├── Vale.AES.GCM_helpers.fst.hints ├── Vale.AES.OptPublic.fsti.hints ├── Vale.AES.X64.AES128.fst.hints ├── Vale.AES.X64.AES128.fsti.hints ├── Vale.AES.X64.AES256.fst.hints ├── Vale.AES.X64.AES256.fsti.hints ├── Vale.AES.X64.AESCTR.fst.hints ├── Vale.AES.X64.AESCTR.fsti.hints ├── Vale.AES.X64.AESGCM.fst.hints ├── Vale.AES.X64.AESGCM.fsti.hints ├── Vale.AES.X64.AESopt.fst.hints ├── Vale.AES.X64.AESopt.fsti.hints ├── Vale.AES.X64.AESopt2.fst.hints ├── Vale.AES.X64.GHash.fsti.hints ├── Vale.AES.X64.PolyOps.fst.hints ├── Vale.Arch.HeapImpl.fsti.hints ├── Vale.Arch.HeapLemmas.fst.hints ├── Vale.AsLowStar.Test.fst.hints ├── Vale.Bignum.Lemmas.fsti.hints ├── Vale.Def.Words.Seq.fsti.hints ├── Vale.Def.Words.Seq_s.fst.hints ├── Vale.Def.Words.Two.fsti.hints ├── Vale.Def.Words.Two_s.fst.hints ├── Vale.Interop.Heap_s.fst.hints ├── Vale.Interop.Views.fsti.hints ├── Vale.Lib.Workarounds.fst.hints ├── Vale.Lib.X64.Cpuid.fsti.hints ├── Vale.LowStarHelpers.fst.hints ├── Vale.Math.Lemmas.Int.fst.hints ├── Vale.Math.Poly2.Bits.fst.hints ├── Vale.Math.Poly2.Defs.fst.hints ├── Vale.Poly1305.Equiv.fst.hints ├── Vale.Poly1305.Equiv.fsti.hints ├── Vale.Poly1305.Math.fsti.hints ├── Vale.Poly1305.Spec_s.fst.hints ├── Vale.Poly1305.Util.fsti.hints ├── Vale.SHA.SHA_helpers.fst.hints ├── Vale.Test.TestInline.fst.hints ├── Vale.Test.X64.Args.fsti.hints ├── Vale.Test.X64.Memcpy.fst.hints ├── Vale.Wrapper.X64.AES.fst.hints ├── Vale.Wrapper.X64.Sha.fst.hints ├── Vale.X64.InsLemmas.fsti.hints ├── Vale.X64.InsVector.fsti.hints ├── Vale.X64.Leakage_Ins.fst.hints ├── Vale.X64.Memory_Sems.fst.hints ├── Vale.X64.QuickCodes.fst.hints ├── Vale.X64.QuickCodes.fsti.hints ├── Vale.X64.Stack_Sems.fst.hints ├── Vale.X64.Stack_Sems.fsti.hints ├── Vale.X64.StateLemmas.fst.hints ├── X64.Leakage_Ins_Xmm.fst.hints ├── X64.Leakage_Ins_Xmm.fsti.hints ├── EverCrypt.AutoConfig2.fst.hints ├── EverCrypt.AutoConfig2.fsti.hints ├── EverCrypt.Curve25519.fsti.hints ├── EverCrypt.StaticConfig.fst.hints ├── EverCrypt.StaticConfig.fsti.hints ├── EverCrypt.TargetConfig.fst.hints ├── EverCrypt.TargetConfig.fsti.hints ├── Hacl.Bignum.Comparison.fst.hints ├── Hacl.Bignum.Definitions.fst.hints ├── Hacl.Bignum.Karatsuba.fst.hints ├── Hacl.Bignum.ModInv64.fsti.hints ├── Hacl.Bignum.ModInvLimb.fst.hints ├── Hacl.Bignum.ModInvLimb.fsti.hints ├── Hacl.Bignum.Montgomery.fst.hints ├── Hacl.Bignum.Montgomery.fsti.hints ├── Hacl.Curve25519_64_Slow.fst.hints ├── Hacl.HKDF.Blake2b_256.fst.hints ├── Hacl.HKDF.Blake2s_128.fst.hints ├── Hacl.HMAC.Blake2b_256.fst.hints ├── Hacl.HMAC.Blake2s_128.fst.hints ├── Hacl.HPKE.Interface.DH.fst.hints ├── Hacl.Hash.Blake2.Lemmas.fst.hints ├── Hacl.Hash.Blake2b_256.fst.hints ├── Hacl.Hash.Blake2s_128.fst.hints ├── Hacl.Hash.Core.Blake2.fst.hints ├── Hacl.Hash.Core.Blake2.fsti.hints ├── Hacl.Hash.Definitions.fst.hints ├── Hacl.Impl.BignumQ.Mul.fst.hints ├── Hacl.Impl.BignumQ.Mul.fsti.hints ├── Hacl.Impl.Blake2.Core.fst.hints ├── Hacl.Impl.Blake2.Core.fsti.hints ├── Hacl.Impl.Chacha20.Vec.fst.hints ├── Hacl.Impl.Ed25519.Sign.fst.hints ├── Hacl.Impl.Frodo.Encode.fst.hints ├── Hacl.Impl.Frodo.Params.fst.hints ├── Hacl.Impl.Frodo.Sample.fst.hints ├── Hacl.Impl.K256.PointAdd.fst.hints ├── Hacl.Impl.K256.PointMul.fst.hints ├── Hacl.Impl.K256.Verify.fst.hints ├── Hacl.Impl.P256.LowLevel.fst.hints ├── Hacl.Impl.P256.PointAdd.fst.hints ├── Hacl.Impl.PrecompTable.fst.hints ├── Hacl.Impl.RSAPSS.Keys.fst.hints ├── Hacl.Impl.SHA2.Generic.fst.hints ├── Hacl.Impl.SHA512.ModQ.fst.hints ├── Hacl.Meta.Chacha20.Vec.fst.hints ├── Hacl.Meta.Curve25519.fsti.hints ├── Hacl.RSAPSS2048_SHA256.fst.hints ├── Hacl.RSAPSS2048_SHA256.fsti.hints ├── Hacl.Spec.Bignum.Base.fst.hints ├── Hacl.Spec.Bignum.ExpBM.fst.hints ├── Hacl.Spec.Bignum.ExpBM.fsti.hints ├── Hacl.Spec.Bignum.ExpFW.fst.hints ├── Hacl.Spec.Bignum.ExpFW.fsti.hints ├── Hacl.Spec.Bignum.ModInv.fst.hints ├── Hacl.Spec.BignumQ.Mul.fst.hints ├── Hacl.Spec.Chacha20.Vec.fst.hints ├── Hacl.Spec.FFDHE.Lemmas.fst.hints ├── Hacl.Spec.K256.Field52.fst.hints ├── Hacl.Spec.K256.Scalar.fst.hints ├── Hacl.Spec.P256.Ladder.fst.hints ├── Hacl.Spec.P256.Lemmas.fst.hints ├── Hacl.Spec.Poly1305.Vec.fst.hints ├── Hacl.Spec.PrecompTable.fst.hints ├── Hacl.Spec.SHA2.Lemmas.fst.hints ├── Hacl.Streaming.Blake2.fst.hints ├── Hacl.Streaming.Functor.fst.hints ├── Hacl.Streaming.Functor.fsti.hints ├── Hacl.Streaming.Lemmas.fst.hints ├── Hacl.Streaming.Poly1305.fst.hints ├── Hacl.Streaming.SHA2_256.fst.hints ├── Lib.IntVector.Serialize.fst.hints ├── Lib.IntVector.Transpose.fst.hints ├── Lib.UpdateMulti.Lemmas.fst.hints ├── Lib.UpdateMulti.Lemmas.fsti.hints ├── MerkleTree.EverCrypt.fsti.hints ├── Spec.Chacha20Poly1305.fst.hints ├── Spec.Cipher.Expansion.fst.hints ├── Spec.Cipher.Expansion.fsti.hints ├── Spec.Curve25519.Lemmas.fst.hints ├── Spec.ECDSA.Test.Vectors.fst.hints ├── Spec.Ed25519.PointOps.fst.hints ├── Spec.Frodo.KEM.Decaps.fst.hints ├── Spec.Frodo.KEM.Encaps.fst.hints ├── Spec.Frodo.KEM.KeyGen.fst.hints ├── Spec.Hash.Definitions.fst.hints ├── Spec.Hash.Incremental.fst.hints ├── Spec.Hash.Incremental.fsti.hints ├── Spec.P256.Definitions.fst.hints ├── Spec.P256.Normalisation.fst.hints ├── Test.Vectors.Aes128Gcm.fst.hints ├── Test.Vectors.Curve25519.fst.hints ├── Test.Vectors.Poly1305.fst.hints ├── Vale.AES.AES256_helpers.fst.hints ├── Vale.AES.AES_helpers.fsti.hints ├── Vale.AES.GCM_helpers.fsti.hints ├── Vale.AES.Gcm_simplify.fst.hints ├── Vale.AES.Gcm_simplify.fsti.hints ├── Vale.AES.X64.AESopt2.fsti.hints ├── Vale.AES.X64.GCMdecrypt.fst.hints ├── Vale.AES.X64.GCMencrypt.fst.hints ├── Vale.AES.X64.GF128_Init.fst.hints ├── Vale.AES.X64.GF128_Mul.fst.hints ├── Vale.AES.X64.GF128_Mul.fsti.hints ├── Vale.AES.X64.PolyOps.fsti.hints ├── Vale.Arch.BufferFriend.fst.hints ├── Vale.Arch.BufferFriend.fsti.hints ├── Vale.Arch.HeapLemmas.fsti.hints ├── Vale.Arch.HeapTypes_s.fst.hints ├── Vale.Arch.MachineHeap.fst.hints ├── Vale.Arch.MachineHeap.fsti.hints ├── Vale.Arch.MachineHeap_s.fst.hints ├── Vale.Arch.TypesNative.fst.hints ├── Vale.Arch.TypesNative.fsti.hints ├── Vale.AsLowStar.ValeSig.fst.hints ├── Vale.AsLowStar.Wrapper.fst.hints ├── Vale.AsLowStar.Wrapper.fsti.hints ├── Vale.Def.PossiblyMonad.fst.hints ├── Vale.Def.TypesNative_s.fst.hints ├── Vale.Def.Words.Four_s.fst.hints ├── Vale.Def.Words.Four_s.fsti.hints ├── Vale.Def.Words.Seq_s.fsti.hints ├── Vale.Def.Words.Two_s.fsti.hints ├── Vale.Lib.Workarounds.fsti.hints ├── Vale.Math.Lemmas.Int.fsti.hints ├── Vale.Math.Poly2.Bits.fsti.hints ├── Vale.Math.Poly2.Bits_s.fst.hints ├── Vale.Math.Poly2.Bits_s.fsti.hints ├── Vale.Math.Poly2.Defs_s.fst.hints ├── Vale.Math.Poly2.Galois.fst.hints ├── Vale.Math.Poly2.Galois.fsti.hints ├── Vale.Math.Poly2.Lemmas.fst.hints ├── Vale.Math.Poly2.Lemmas.fsti.hints ├── Vale.Math.Poly2.Words.fst.hints ├── Vale.Math.Poly2.Words.fsti.hints ├── Vale.SHA.SHA_helpers.fsti.hints ├── Vale.SHA.Simplify_Sha.fst.hints ├── Vale.SHA.Simplify_Sha.fsti.hints ├── Vale.Stdcalls.X64.Aes.fst.hints └── Vale.Stdcalls.X64.Aes.fsti.hints /doc/_static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/streaming/nohup.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/wasm/Makefile.basic: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bindings/js/.npmignore: -------------------------------------------------------------------------------- 1 | doc/ 2 | -------------------------------------------------------------------------------- /vale/.tested_z3_version: -------------------------------------------------------------------------------- 1 | 4.5.1 2 | -------------------------------------------------------------------------------- /vale/.vale_version: -------------------------------------------------------------------------------- 1 | 0.3.16 2 | -------------------------------------------------------------------------------- /obj/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/merkle_tree_test.h: -------------------------------------------------------------------------------- 1 | int main (); 2 | -------------------------------------------------------------------------------- /vale/doc/.gitattributes: -------------------------------------------------------------------------------- 1 | *.html eol=lf 2 | -------------------------------------------------------------------------------- /providers/test/vectors/.merlin: -------------------------------------------------------------------------------- 1 | S . 2 | PKG yojson 3 | -------------------------------------------------------------------------------- /bindings/js/doc/.gitignore: -------------------------------------------------------------------------------- 1 | out/ 2 | readable_api.js 3 | -------------------------------------------------------------------------------- /code/hpke/Hacl.Meta.HPKE.fsti: -------------------------------------------------------------------------------- 1 | module Hacl.Meta.HPKE 2 | -------------------------------------------------------------------------------- /secure_api/vale/asm/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.s 3 | *.a 4 | -------------------------------------------------------------------------------- /bindings/ocaml/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.2) 2 | (name hacl-star) 3 | -------------------------------------------------------------------------------- /code/poly1305/Hacl.Meta.Poly1305.fsti: -------------------------------------------------------------------------------- 1 | module Hacl.Meta.Poly1305 2 | -------------------------------------------------------------------------------- /code/curve25519/Hacl.Meta.Curve25519.fsti: -------------------------------------------------------------------------------- 1 | module Hacl.Meta.Curve25519 2 | -------------------------------------------------------------------------------- /code/fallback/AUTHORS.md: -------------------------------------------------------------------------------- 1 | This code was authored by Natalia Kulatova. 2 | -------------------------------------------------------------------------------- /code/old/README.md: -------------------------------------------------------------------------------- 1 | ⚠️⚠️⚠️⚠️ obsolete, will be removed soon ⚠️⚠️⚠️⚠️ 2 | -------------------------------------------------------------------------------- /specs/old/README.md: -------------------------------------------------------------------------------- 1 | ⚠️⚠️⚠️⚠️ obsolete, will be removed soon ⚠️⚠️⚠️⚠️ 2 | -------------------------------------------------------------------------------- /vale/.tested_fstar_version: -------------------------------------------------------------------------------- 1 | 5cd399237f70fe0b1b55e3d988ca5095257b0805 2 | -------------------------------------------------------------------------------- /code/meta/AUTHORS.md: -------------------------------------------------------------------------------- 1 | This code was authored by Jonathan Protzenko (MSR). 2 | -------------------------------------------------------------------------------- /bindings/ocaml/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | *.native 3 | *.install 4 | .merlin 5 | 6 | -------------------------------------------------------------------------------- /code/ffdhe/AUTHORS.md: -------------------------------------------------------------------------------- 1 | This code was primarily written by Marina Polubelova (INRIA). -------------------------------------------------------------------------------- /code/rsapss/AUTHORS.md: -------------------------------------------------------------------------------- 1 | This code was primarily written by Marina Polubelova (INRIA). -------------------------------------------------------------------------------- /specs/frodo/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /specs/lemmas/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /specs/tests/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /tests/tests-openssl/jasmin-poly-avx2/impl.h: -------------------------------------------------------------------------------- 1 | #define poly1305_impl poly1305_avx2 2 | -------------------------------------------------------------------------------- /code/drbg/AUTHORS.md: -------------------------------------------------------------------------------- 1 | This code was primarily written by Santiago Zanella-Beguelin (MSR). -------------------------------------------------------------------------------- /code/k256/AUTHORS.md: -------------------------------------------------------------------------------- 1 | This code was primarily written by Marina Polubelova (Nomadic Labs). -------------------------------------------------------------------------------- /providers/test/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /secure_api/merkle_tree/.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | .depend 3 | .output 4 | c 5 | snapshot 6 | -------------------------------------------------------------------------------- /secure_api/vale/README.md: -------------------------------------------------------------------------------- 1 | ⚠️⚠️⚠️⚠️ obsolete code⚠️⚠️⚠️⚠️ 2 | 3 | to be removed soon 4 | -------------------------------------------------------------------------------- /tests/tests-openssl/jasmin-chacha-avx2/impl.h: -------------------------------------------------------------------------------- 1 | #define chacha20_impl chacha20_avx2 2 | -------------------------------------------------------------------------------- /vale/code/arch/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /vale/code/test/TestInlineMain.ml: -------------------------------------------------------------------------------- 1 | let _ = 2 | Vale_Test_TestInline.test_inline () 3 | -------------------------------------------------------------------------------- /vale/specs/crypto/Vale.AES.GF128_s.fst: -------------------------------------------------------------------------------- 1 | module Vale.AES.GF128_s 2 | open FStar.Mul 3 | -------------------------------------------------------------------------------- /code/drbg/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=$(realpath ../..) 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /code/hash/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=$(realpath ../..) 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /code/hkdf/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=$(realpath ../..) 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /code/hmac/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=$(realpath ../..) 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /code/meta/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=$(realpath ../..) 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /code/sha3/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=$(realpath ../..) 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /code/tests/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=$(realpath ../..) 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /providers/evercrypt/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /secure_api/merkle_tree/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /vale/specs/crypto/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /vale/specs/defs/Vale.Def.Words.Four_s.fst: -------------------------------------------------------------------------------- 1 | module Vale.Def.Words.Four_s 2 | open FStar.Mul 3 | -------------------------------------------------------------------------------- /vale/specs/defs/Vale.Def.Words.Two_s.fst: -------------------------------------------------------------------------------- 1 | module Vale.Def.Words.Two_s 2 | open FStar.Mul 3 | -------------------------------------------------------------------------------- /vale/specs/hardware/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /vale/specs/interop/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /code/fallback/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=$(realpath ../..) 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /code/nacl-box/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=$(realpath ../..) 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /code/salsa20/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=$(realpath ../..) 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /code/streaming/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=$(realpath ../..) 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /doc/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/doc/diagram.png -------------------------------------------------------------------------------- /providers/evercrypt/fst/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /vale/code/arch/x64/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../../../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /vale/code/crypto/sha/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../../../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /dist/wasm/Vale.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Vale.wasm -------------------------------------------------------------------------------- /tests/tests-openssl/jasmin-poly-avx2/api.h: -------------------------------------------------------------------------------- 1 | #define CRYPTO_BYTES 16 2 | #define CRYPTO_KEYBYTES 32 3 | -------------------------------------------------------------------------------- /vale/code/crypto/poly1305/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../../../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /vale/code/lib/transformers/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../../../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /code/meta/Meta.Attribute.fst: -------------------------------------------------------------------------------- 1 | module Meta.Attribute 2 | 3 | let specialize = () 4 | let inline_ = () 5 | -------------------------------------------------------------------------------- /dist/wasm/FStar.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/FStar.wasm -------------------------------------------------------------------------------- /hints/Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Test.fst.hints -------------------------------------------------------------------------------- /hints/Test.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Test.fsti.hints -------------------------------------------------------------------------------- /tests/tests-openssl/jasmin-chacha-avx2/api.h: -------------------------------------------------------------------------------- 1 | #define CRYPTO_KEYBYTES 32 2 | #define CRYPTO_NONCEBYTES 8 3 | -------------------------------------------------------------------------------- /vale/code/crypto/poly1305/x64/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../../../../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /dist/wasm/Hacl_HKDF.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_HKDF.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_HMAC.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_HMAC.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_NaCl.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_NaCl.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_P256.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_P256.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_SHA3.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_SHA3.wasm -------------------------------------------------------------------------------- /dist/wasm/LowStar.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/LowStar.wasm -------------------------------------------------------------------------------- /hints/Cipher16.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Cipher16.fst.hints -------------------------------------------------------------------------------- /hints/Client.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Client.fst.hints -------------------------------------------------------------------------------- /hints/Example.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Example.fst.hints -------------------------------------------------------------------------------- /hints/Lib.Meta.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Meta.fst.hints -------------------------------------------------------------------------------- /hints/Spec.AES.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.AES.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Box.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Box.fst.hints -------------------------------------------------------------------------------- /hints/Spec.DH.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.DH.fst.hints -------------------------------------------------------------------------------- /hints/Spec.MD5.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.MD5.fst.hints -------------------------------------------------------------------------------- /hints/X64.Util.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/X64.Util.fst.hints -------------------------------------------------------------------------------- /vale/code/crypto/ecc/curve25519/Makefile: -------------------------------------------------------------------------------- 1 | HACL_HOME=../../../../.. 2 | include $(HACL_HOME)/Makefile.common 3 | -------------------------------------------------------------------------------- /code/blake2/AUTHORS.md: -------------------------------------------------------------------------------- 1 | This code was primarily written by Karthikeyan Bhargavan (INRIA) and Benjamin Beurdouche (INRIA) -------------------------------------------------------------------------------- /dist/wasm/Hacl_Bignum.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Bignum.wasm -------------------------------------------------------------------------------- /dist/wasm/WasmSupport.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/WasmSupport.wasm -------------------------------------------------------------------------------- /hints/Cipher16.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Cipher16.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.FFDHE.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.FFDHE.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.HKDF.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.HKDF.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.HKDF.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.HKDF.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.HMAC.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.HMAC.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.HMAC.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.HMAC.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.NaCl.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.NaCl.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.P256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.P256.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.P256.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.P256.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.SHA3.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.SHA3.fst.hints -------------------------------------------------------------------------------- /hints/Interface.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Interface.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.Buffer.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Buffer.fst.hints -------------------------------------------------------------------------------- /hints/Lib.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Lib.Loops.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Loops.fst.hints -------------------------------------------------------------------------------- /hints/Lib.Loops.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Loops.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.NTuple.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.NTuple.fst.hints -------------------------------------------------------------------------------- /hints/Lib.NatMod.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.NatMod.fst.hints -------------------------------------------------------------------------------- /hints/Lib.Unlib.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Unlib.fst.hints -------------------------------------------------------------------------------- /hints/Lib.Unlib.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Unlib.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.AEAD.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.AEAD.fst.hints -------------------------------------------------------------------------------- /hints/Spec.AEAD.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.AEAD.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.ECDSA.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.ECDSA.fst.hints -------------------------------------------------------------------------------- /hints/Spec.FFDHE.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.FFDHE.fst.hints -------------------------------------------------------------------------------- /hints/Spec.HKDF.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.HKDF.fst.hints -------------------------------------------------------------------------------- /hints/Spec.HKDF.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.HKDF.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.HMAC.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.HMAC.fst.hints -------------------------------------------------------------------------------- /hints/Spec.HMAC.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.HMAC.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Hash.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Hash.fst.hints -------------------------------------------------------------------------------- /hints/Spec.K256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.K256.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Loops.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Loops.fst.hints -------------------------------------------------------------------------------- /hints/Spec.MD5.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.MD5.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.P256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.P256.fst.hints -------------------------------------------------------------------------------- /hints/Spec.SHA1.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.SHA1.fst.hints -------------------------------------------------------------------------------- /hints/Spec.SHA1.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.SHA1.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.SHA2.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.SHA2.fst.hints -------------------------------------------------------------------------------- /hints/Spec.SHA2.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.SHA2.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.SHA3.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.SHA3.fst.hints -------------------------------------------------------------------------------- /hints/Test.Bytes.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Test.Bytes.fst.hints -------------------------------------------------------------------------------- /hints/Test.Hash.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Test.Hash.fst.hints -------------------------------------------------------------------------------- /hints/X64.Util.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/X64.Util.fsti.hints -------------------------------------------------------------------------------- /specs/tests/Spec.Frodo.Test.fsti: -------------------------------------------------------------------------------- 1 | module Spec.Frodo.Test 2 | 3 | open FStar.All 4 | 5 | val test: unit -> ML bool 6 | -------------------------------------------------------------------------------- /bindings/js/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hacl-wasm", 3 | "version": "1.1.0", 4 | "lockfileVersion": 1 5 | } 6 | -------------------------------------------------------------------------------- /code/frodo/AUTHORS.md: -------------------------------------------------------------------------------- 1 | This code was primarily written by Marina Polubelova (INRIA) and Santiago Zanella-Beguelin (MSR). 2 | -------------------------------------------------------------------------------- /code/sha3/AUTHORS.md: -------------------------------------------------------------------------------- 1 | This code was primarily written by Marina Polubelova (INRIA) and Santiago Zanella-Beguelin (MSR). 2 | -------------------------------------------------------------------------------- /dist/wasm/EverCrypt_Hash.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/EverCrypt_Hash.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Bignum256.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Bignum256.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Bignum32.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Bignum32.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Bignum64.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Bignum64.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Chacha20.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Chacha20.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Ed25519.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Ed25519.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Hash_Base.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Hash_Base.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Hash_MD5.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Hash_MD5.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Hash_SHA1.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Hash_SHA1.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Hash_SHA2.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Hash_SHA2.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Salsa20.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Salsa20.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Streaming.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Streaming.wasm -------------------------------------------------------------------------------- /hints/EverCrypt.CTR.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.CTR.fst.hints -------------------------------------------------------------------------------- /hints/Fast_stdcalls.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Fast_stdcalls.fst.hints -------------------------------------------------------------------------------- /hints/Frodo.Params.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Frodo.Params.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.AES128.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.AES128.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum32.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum32.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum64.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum64.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Chacha20.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Chacha20.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.EC.K256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.EC.K256.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Ed25519.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Ed25519.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Ed25519.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Ed25519.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Frodo64.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Frodo64.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Frodo640.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Frodo640.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Frodo976.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Frodo976.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.MD.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.MD.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.MD.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.MD.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.MD5.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.MD5.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Box.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Box.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Lib.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Lib.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.MGF.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.MGF.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Keccak.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Keccak.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Keccak.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Keccak.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.RSAPSS.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.RSAPSS.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Salsa20.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Salsa20.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.DH.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.DH.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.Lib.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.Lib.fst.hints -------------------------------------------------------------------------------- /hints/Lib.Buffer.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Buffer.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.CreateN.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.CreateN.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.IntTypes.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.IntTypes.fst.hints -------------------------------------------------------------------------------- /hints/Lib.IntTypes.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.IntTypes.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.IntVector.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.IntVector.fst.hints -------------------------------------------------------------------------------- /hints/Lib.Memzero.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Memzero.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.Memzero0.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Memzero0.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.NTuple.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.NTuple.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.NatMod.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.NatMod.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.RawBuffer.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.RawBuffer.fst.hints -------------------------------------------------------------------------------- /hints/Lib.Sequence.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Sequence.fst.hints -------------------------------------------------------------------------------- /hints/Lib.Sequence.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Sequence.fsti.hints -------------------------------------------------------------------------------- /hints/MerkleTree.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/MerkleTree.fsti.hints -------------------------------------------------------------------------------- /hints/MetaAttribute.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/MetaAttribute.fst.hints -------------------------------------------------------------------------------- /hints/MetaInterface.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/MetaInterface.fst.hints -------------------------------------------------------------------------------- /hints/Spec.AES.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.AES.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Agile.DH.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Agile.DH.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Blake2.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Blake2.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Box.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Box.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Chacha20.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Chacha20.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Ed25519.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Ed25519.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Matrix.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Matrix.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Poly1305.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Poly1305.fst.hints -------------------------------------------------------------------------------- /hints/Spec.RSAPSS.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.RSAPSS.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Salsa20.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Salsa20.fst.hints -------------------------------------------------------------------------------- /hints/Test.NoHeap.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Test.NoHeap.fst.hints -------------------------------------------------------------------------------- /hints/Test.NoHeap.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Test.NoHeap.fsti.hints -------------------------------------------------------------------------------- /hints/Test.Vectors.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Test.Vectors.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.GCM.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.GCM.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.GCM.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.GCM.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.GCTR.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.GCTR.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Interop.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Interop.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Interop.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Interop.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Bv_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Bv_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Meta.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Meta.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Seqs.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Seqs.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Set.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Set.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Set.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Set.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.SHA.X64.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.SHA.X64.fst.hints -------------------------------------------------------------------------------- /hints/Vale.SHA.X64.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.SHA.X64.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Regs.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Regs.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Xmms.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Xmms.fst.hints -------------------------------------------------------------------------------- /hints/WasmSupport.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/WasmSupport.fst.hints -------------------------------------------------------------------------------- /dist/test/c/Makefile.include: -------------------------------------------------------------------------------- 1 | USER_TARGET= 2 | USER_CFLAGS= 3 | USER_C_FILES= 4 | ALL_C_FILES=Test.c 5 | ALL_H_FILES=Test.h 6 | -------------------------------------------------------------------------------- /dist/test/ml/Spec_AES_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_AES_Test.test ()) then (print_endline "Spec_AES_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /dist/test/ml/Spec_Box_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_Box_Test.test ()) then (print_endline "Spec_Box_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /dist/test/ml/Spec_HKDF_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_HKDF_Test.test ()) then (print_endline "Spec_HKDF_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /dist/test/ml/Spec_HMAC_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_HMAC_Test.test ()) then (print_endline "Spec_HMAC_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /dist/test/ml/Spec_Hash_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_Hash_Test.test ()) then (print_endline "Spec_Hash_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /dist/test/ml/Spec_K256_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_K256_Test.test ()) then (print_endline "Spec_K256_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /dist/test/ml/Spec_SHA2_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_SHA2_Test.test ()) then (print_endline "Spec_SHA2_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /dist/test/ml/Spec_SHA3_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_SHA3_Test.test ()) then (print_endline "Spec_SHA3_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /dist/wasm/Hacl_Bignum4096.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Bignum4096.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_EC_Ed25519.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_EC_Ed25519.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Hash_Blake2.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Hash_Blake2.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Poly1305_32.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Poly1305_32.wasm -------------------------------------------------------------------------------- /dist/wasm/Steel_Reference.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Steel_Reference.wasm -------------------------------------------------------------------------------- /hints/CanonCommMonoid.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/CanonCommMonoid.fst.hints -------------------------------------------------------------------------------- /hints/CanonCommSwaps.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/CanonCommSwaps.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.AEAD.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.AEAD.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.AEAD.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.AEAD.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.CTR.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.CTR.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.DRBG.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.DRBG.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.DRBG.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.DRBG.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.HKDF.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.HKDF.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.HKDF.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.HKDF.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.HMAC.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.HMAC.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.HMAC.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.HMAC.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Hacl.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Hacl.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Hash.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Hash.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Hash.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Hash.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Vale.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Vale.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Wasm.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Wasm.fsti.hints -------------------------------------------------------------------------------- /hints/Fast_stdcalls.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Fast_stdcalls.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.Lib.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.Lib.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum256.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum256.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum256.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum32.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum32.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum4096.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum4096.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum64.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum64.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Blake2b_32.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Blake2b_32.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Blake2s_32.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Blake2s_32.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.EC.Ed25519.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.EC.Ed25519.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.FFDHE4096.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.FFDHE4096.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.FFDHE4096.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.FFDHE4096.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Frodo.KEM.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Frodo.KEM.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Frodo1344.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Frodo1344.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.HMAC_DRBG.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.HMAC_DRBG.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.HMAC_DRBG.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.HMAC_DRBG.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Agile.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Agile.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.MD5.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.MD5.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.SHA1.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.SHA1.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.SHA1.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.SHA1.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.SHA2.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.SHA2.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.SHA2.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.SHA2.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.ECDSA.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.ECDSA.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.FFDHE.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.FFDHE.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.HPKE.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.HPKE.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.HPKE.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.HPKE.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.P256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.P256.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.P256.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.P256.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.SHA3.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.SHA3.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.K256.ECDSA.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.K256.ECDSA.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.K256.Field.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.K256.Field.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Meta.HPKE.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Meta.HPKE.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Meta.HPKE.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Meta.HPKE.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.ECDSA.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.ECDSA.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.P256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.P256.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.SHA2.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.SHA2.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Test.ECDSA.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Test.ECDSA.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Test.K256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Test.K256.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Test.SHA2.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Test.SHA2.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Test.SHA3.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Test.SHA3.fst.hints -------------------------------------------------------------------------------- /hints/Interop_Printer.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Interop_Printer.fst.hints -------------------------------------------------------------------------------- /hints/Lib.ByteBuffer.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.ByteBuffer.fst.hints -------------------------------------------------------------------------------- /hints/Lib.ByteBuffer.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.ByteBuffer.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.CurveLemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.CurveLemmas.fst.hints -------------------------------------------------------------------------------- /hints/Lib.IntVector.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.IntVector.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.MultiBuffer.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.MultiBuffer.fst.hints -------------------------------------------------------------------------------- /hints/Lib.RawBuffer.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.RawBuffer.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.RawIntTypes.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.RawIntTypes.fst.hints -------------------------------------------------------------------------------- /hints/Lib.UpdateMulti.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.UpdateMulti.fst.hints -------------------------------------------------------------------------------- /hints/Lib.Vec.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Vec.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Lib.Vec.Lemmas.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Vec.Lemmas.fsti.hints -------------------------------------------------------------------------------- /hints/MerkleTree.Low.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/MerkleTree.Low.fst.hints -------------------------------------------------------------------------------- /hints/MerkleTree.Spec.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/MerkleTree.Spec.fst.hints -------------------------------------------------------------------------------- /hints/Meta.Attribute.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Meta.Attribute.fst.hints -------------------------------------------------------------------------------- /hints/Meta.Interface.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Meta.Interface.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Agile.AEAD.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Agile.AEAD.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Agile.CTR.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Agile.CTR.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Agile.HKDF.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Agile.HKDF.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Agile.HMAC.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Agile.HMAC.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Agile.HPKE.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Agile.HPKE.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Agile.Hash.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Agile.Hash.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Cipher16.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Cipher16.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Curve25519.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Curve25519.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Frodo.Gen.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Frodo.Gen.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Frodo.KEM.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Frodo.KEM.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Frodo.Pack.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Frodo.Pack.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Frodo.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Frodo.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.HKDF.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.HKDF.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.HMAC.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.HMAC.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.HMAC_DRBG.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.HMAC_DRBG.fst.hints -------------------------------------------------------------------------------- /hints/Spec.HMAC_DRBG.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.HMAC_DRBG.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.HPKE.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.HPKE.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.HPKE.Test.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.HPKE.Test.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Hash.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Hash.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.K256.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.K256.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.SHA2.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.SHA2.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.SHA3.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.SHA3.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.SecretBox.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.SecretBox.fst.hints -------------------------------------------------------------------------------- /hints/Test.Lowstarize.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Test.Lowstarize.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.AES_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.AES_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.GCM_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.GCM_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.GCTR.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.GCTR.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.GCTR_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.GCTR_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.GF128.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.GF128.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.GF128.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.GF128.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.GHash.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.GHash.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.GHash.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.GHash.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.Heap.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.Heap.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.Heap.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.Heap.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.Types.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.Types.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Bignum.X64.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Bignum.X64.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Prop_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Prop_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Basic.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Basic.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Basic.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Basic.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Lists.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Lists.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Lists.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Lists.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Map16.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Map16.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Map16.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Map16.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Meta.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Meta.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Seqs.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Seqs.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Seqs_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Seqs_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Bits.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Bits.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Bits.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Bits.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Decls.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Decls.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Decls.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Decls.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Flags.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Flags.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Flags.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Flags.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.InsAes.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.InsAes.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.InsMem.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.InsMem.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.InsSha.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.InsSha.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Memory.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Memory.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Regs.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Regs.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Stack.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Stack.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Stack.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Stack.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.State.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.State.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.State.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.State.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Xmms.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Xmms.fsti.hints -------------------------------------------------------------------------------- /hints/X64.AESstdcall.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/X64.AESstdcall.fst.hints -------------------------------------------------------------------------------- /hints/X64.AESstdcall.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/X64.AESstdcall.fsti.hints -------------------------------------------------------------------------------- /hints/X64.GCTRstdcall.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/X64.GCTRstdcall.fst.hints -------------------------------------------------------------------------------- /specs/frodo/AUTHORS.md: -------------------------------------------------------------------------------- 1 | This code was primarily written by Marina Polubelova (INRIA) and Santiago Zanella-Beguelin (MSR). 2 | -------------------------------------------------------------------------------- /code/streaming/AUTHORS.md: -------------------------------------------------------------------------------- 1 | This code was primarily written by Jonathan Protzenko. 2 | Son Ho (INRIA) added support for blake2. 3 | -------------------------------------------------------------------------------- /dist/test/ml/Spec_Frodo_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_Frodo_Test.test ()) then (print_endline "Spec_Frodo_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /dist/wasm/EverCrypt_EverCrypt.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/EverCrypt_EverCrypt.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Bignum25519_51.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Bignum25519_51.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Bignum256_32.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Bignum256_32.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Bignum4096_32.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Bignum4096_32.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Chacha20_Vec32.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Chacha20_Vec32.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Curve25519_51.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Curve25519_51.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_GenericField32.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_GenericField32.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_GenericField64.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_GenericField64.wasm -------------------------------------------------------------------------------- /dist/wasm/LowStar_Endianness.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/LowStar_Endianness.wasm -------------------------------------------------------------------------------- /hints/CanonCommSemiring.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/CanonCommSemiring.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.BCrypt.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.BCrypt.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Bytes.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Bytes.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.CTR.Keys.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.CTR.Keys.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Cipher.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Cipher.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Cipher.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Cipher.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Ciphers.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Ciphers.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Ciphers.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Ciphers.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Ed25519.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Ed25519.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Ed25519.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Ed25519.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Error.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Error.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Helpers.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Helpers.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.OpenSSL.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.OpenSSL.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Poly1305.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Poly1305.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Specs.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Specs.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.Base.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.Base.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.ExpBM.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.ExpBM.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.ExpBM.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.ExpBM.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.ExpFW.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.ExpFW.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.ExpFW.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.ExpFW.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.ModInv.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.ModInv.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum25519.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum25519.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum25519.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum25519.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum256_32.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum256_32.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum256_32.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum256_32.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum4096.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum4096.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum4096_32.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum4096_32.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Blake2b_256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Blake2b_256.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Blake2s_128.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Blake2s_128.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Curve25519_51.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Curve25519_51.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Curve25519_64.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Curve25519_64.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Frodo.Random.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Frodo.Random.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Frodo.Random.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Frodo.Random.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Blake2.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Blake2.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Blake2.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Blake2.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Core.MD5.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Core.MD5.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Chacha20.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Chacha20.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.ECDSA.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.ECDSA.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.HSalsa20.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.HSalsa20.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Load56.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Load56.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.LowLevel.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.LowLevel.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Matrix.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Matrix.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.P256.DH.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.P256.DH.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.P256.DH.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.P256.DH.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Poly1305.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Poly1305.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.RSAKeys.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.RSAKeys.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.RSAPSS.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.RSAPSS.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Salsa20.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Salsa20.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Store56.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Store56.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.K256.ECDSA.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.K256.ECDSA.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.K256.Field.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.K256.Field.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.K256.Scalar.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.K256.Scalar.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.K256.Scalar.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.K256.Scalar.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Loops.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Loops.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Loops.Lemmas.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Loops.Lemmas.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Meta.Poly1305.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Meta.Poly1305.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Poly1305_128.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Poly1305_128.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Poly1305_128.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Poly1305_128.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Poly1305_256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Poly1305_256.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Poly1305_256.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Poly1305_256.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Poly1305_32.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Poly1305_32.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Poly1305_32.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Poly1305_32.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.SHA2.Scalar32.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.SHA2.Scalar32.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.SHA2.Vec128.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.SHA2.Vec128.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.SHA2.Vec256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.SHA2.Vec256.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.Bignum.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.Bignum.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.Bignum.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.Bignum.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.RSAPSS.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.RSAPSS.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.SHA2.Vec.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.SHA2.Vec.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Streaming.MD.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Streaming.MD.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Streaming.MD5.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Streaming.MD5.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Test.CSHAKE.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Test.CSHAKE.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Test.Ed25519.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Test.Ed25519.fst.hints -------------------------------------------------------------------------------- /hints/Lib.ByteSequence.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.ByteSequence.fst.hints -------------------------------------------------------------------------------- /hints/Lib.ByteSequence.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.ByteSequence.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.Exponentiation.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Exponentiation.fst.hints -------------------------------------------------------------------------------- /hints/Lib.PrintBuffer.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.PrintBuffer.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.PrintSequence.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.PrintSequence.fst.hints -------------------------------------------------------------------------------- /hints/Lib.PrintSequence.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.PrintSequence.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.RandomBuffer.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.RandomBuffer.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.RawIntTypes.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.RawIntTypes.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Agile.AEAD.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Agile.AEAD.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Agile.Cipher.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Agile.Cipher.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Agile.Cipher.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Agile.Cipher.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Agile.HKDF.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Agile.HKDF.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Agile.HMAC.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Agile.HMAC.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Agile.HPKE.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Agile.HPKE.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Agile.Hash.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Agile.Hash.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Blake2.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Blake2.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Chacha20.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Chacha20.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Ed25519.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Ed25519.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Frodo.Encode.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Frodo.Encode.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Frodo.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Frodo.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Frodo.Lemmas.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Frodo.Lemmas.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Frodo.Params.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Frodo.Params.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Frodo.Random.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Frodo.Random.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Frodo.Sample.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Frodo.Sample.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Frodo.Test.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Frodo.Test.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.GaloisField.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.GaloisField.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Hash.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Hash.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Hash.Lemmas.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Hash.Lemmas.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Hash.Lemmas0.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Hash.Lemmas0.fst.hints -------------------------------------------------------------------------------- /hints/Spec.K256.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.K256.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Spec.K256.Lemmas.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.K256.Lemmas.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.K256.PointOps.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.K256.PointOps.fst.hints -------------------------------------------------------------------------------- /hints/Spec.P256.Ladder.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.P256.Ladder.fst.hints -------------------------------------------------------------------------------- /hints/Spec.P256.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.P256.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Poly1305.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Poly1305.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.SHA2.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.SHA2.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Spec.SHA2.Lemmas.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.SHA2.Lemmas.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Salsa20.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Salsa20.Test.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.GF128_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.GF128_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.GF128_s.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.GF128_s.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.GHash_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.GHash_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.OptPublic.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.OptPublic.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.AES.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.AES.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.AES.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.AES.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.GCTR.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.GCTR.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.GCTR.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.GCTR.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.GHash.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.GHash.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.HeapImpl.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.HeapImpl.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.Types.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.Types.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Bignum.Defs.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Bignum.Defs.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Bignum.Defs.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Bignum.Defs.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Bignum.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Bignum.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Bignum.X64.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Bignum.X64.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Opaque_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Opaque_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Opaque_s.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Opaque_s.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Types_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Types_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Words.Seq.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Words.Seq.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Words.Two.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Words.Two.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Words_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Words_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Words_s.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Words_s.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.FDefMulx.X64.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.FDefMulx.X64.fst.hints -------------------------------------------------------------------------------- /hints/Vale.FDefMulx.X64.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.FDefMulx.X64.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Interop.Base.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Interop.Base.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Interop.Cast.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Interop.Cast.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Interop.Cast.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Interop.Cast.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Interop.Types.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Interop.Types.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Interop.Views.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Interop.Views.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Interop.X64.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Interop.X64.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Interop.X64.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Interop.X64.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.MapTree.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.MapTree.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.MapTree.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.MapTree.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Operator.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Operator.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Operator.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Operator.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Tactics.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Tactics.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.X64.Cpuid.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.X64.Cpuid.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2_s.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2_s.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Poly1305.Math.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Poly1305.Math.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Poly1305.Util.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Poly1305.Util.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Poly1305.X64.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Poly1305.X64.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Poly1305.X64.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Poly1305.X64.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Test.X64.Args.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Test.X64.Args.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.InsAes.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.InsAes.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.InsBasic.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.InsBasic.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.InsBasic.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.InsBasic.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.InsLemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.InsLemmas.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.InsMem.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.InsMem.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.InsSha.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.InsSha.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.InsStack.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.InsStack.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.InsStack.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.InsStack.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.InsVector.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.InsVector.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Leakage.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Leakage.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Leakage.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Leakage.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Leakage_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Leakage_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Lemmas.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Lemmas.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Machine_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Machine_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Memory.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Memory.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Print_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Print_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.QuickCode.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.QuickCode.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Stack_i.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Stack_i.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Stack_i.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Stack_i.fsti.hints -------------------------------------------------------------------------------- /hints/X64.GCTRstdcall.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/X64.GCTRstdcall.fsti.hints -------------------------------------------------------------------------------- /hints/X64.GHashstdcall.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/X64.GHashstdcall.fst.hints -------------------------------------------------------------------------------- /hints/X64.GHashstdcall.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/X64.GHashstdcall.fsti.hints -------------------------------------------------------------------------------- /dist/test/ml/Spec_Blake2_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_Blake2_Test.test ()) then (print_endline "Spec_Blake2_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /dist/test/ml/Spec_Ed25519_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_Ed25519_Test.test ()) then (print_endline "Spec_Ed25519_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /dist/test/ml/Spec_Salsa20_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_Salsa20_Test.test ()) then (print_endline "Spec_Salsa20_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /hints/EverCrypt.CTR.Keys.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.CTR.Keys.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Curve25519.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Curve25519.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Poly1305.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Poly1305.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.Addition.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.Addition.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.Convert.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.Convert.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.ModInv64.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.ModInv64.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.SafeAPI.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.SafeAPI.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum4096_32.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum4096_32.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Chacha20.Vec128.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Chacha20.Vec128.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Chacha20.Vec256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Chacha20.Vec256.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Chacha20.Vec32.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Chacha20.Vec32.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Curve25519_51.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Curve25519_51.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Curve25519_64.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Curve25519_64.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.GenericField32.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.GenericField32.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.GenericField32.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.GenericField32.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.GenericField64.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.GenericField64.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.GenericField64.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.GenericField64.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Core.MD5.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Core.MD5.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Core.SHA1.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Core.SHA1.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Core.SHA1.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Core.SHA1.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Core.SHA2.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Core.SHA2.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Core.SHA2.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Core.SHA2.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.PadFinish.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.PadFinish.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.PadFinish.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.PadFinish.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Frodo.Gen.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Frodo.Gen.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Frodo.KEM.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Frodo.KEM.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Frodo.Pack.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Frodo.Pack.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.K256.Finv.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.K256.Finv.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.K256.Point.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.K256.Point.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.K256.Qinv.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.K256.Qinv.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.K256.Sign.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.K256.Sign.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.P256.Core.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.P256.Core.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.P256.Core.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.P256.Core.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.P256.Math.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.P256.Math.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Poly1305.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Poly1305.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.RSAPSS.MGF.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.RSAPSS.MGF.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.SHA2.Core.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.SHA2.Core.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.SecretBox.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.SecretBox.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Meta.Curve25519.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Meta.Curve25519.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Meta.Poly1305.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Meta.Poly1305.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.Bignum.Lib.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.Bignum.Lib.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.K256.Finv.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.K256.Finv.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.K256.Qinv.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.K256.Qinv.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.P256.Felem.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.P256.Felem.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.SHA2.Equiv.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.SHA2.Equiv.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Streaming.SHA1.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Streaming.SHA1.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Streaming.SHA2.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Streaming.SHA2.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Streaming.Spec.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Streaming.Spec.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Test.HMAC_DRBG.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Test.HMAC_DRBG.fst.hints -------------------------------------------------------------------------------- /hints/Lib.Exponentiation.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Exponentiation.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.LoopCombinators.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.LoopCombinators.fst.hints -------------------------------------------------------------------------------- /hints/Lib.LoopCombinators.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.LoopCombinators.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.RandomSequence.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.RandomSequence.fsti.hints -------------------------------------------------------------------------------- /hints/Lib.Sequence.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Sequence.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Lib.Sequence.Lemmas.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.Sequence.Lemmas.fsti.hints -------------------------------------------------------------------------------- /hints/MerkleTree.EverCrypt.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/MerkleTree.EverCrypt.fst.hints -------------------------------------------------------------------------------- /hints/MerkleTree.New.High.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/MerkleTree.New.High.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Curve25519.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Curve25519.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Ed25519.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Ed25519.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Ed25519.Lemmas.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Ed25519.Lemmas.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Exponentiation.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Exponentiation.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Exponentiation.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Exponentiation.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.HMAC_DRBG.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.HMAC_DRBG.Test.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Hash.PadFinish.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Hash.PadFinish.fst.hints -------------------------------------------------------------------------------- /hints/Spec.SHA2.Constants.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.SHA2.Constants.fst.hints -------------------------------------------------------------------------------- /hints/Spec.SHA3.Constants.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.SHA3.Constants.fst.hints -------------------------------------------------------------------------------- /hints/Spec.SecretBox.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.SecretBox.Test.fst.hints -------------------------------------------------------------------------------- /hints/Test.Vectors.Aes128.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Test.Vectors.Aes128.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.AES_helpers.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.AES_helpers.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.GCM_helpers.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.GCM_helpers.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.OptPublic.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.OptPublic.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.AES128.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.AES128.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.AES128.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.AES128.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.AES256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.AES256.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.AES256.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.AES256.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.AESCTR.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.AESCTR.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.AESCTR.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.AESCTR.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.AESGCM.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.AESGCM.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.AESGCM.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.AESGCM.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.AESopt.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.AESopt.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.AESopt.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.AESopt.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.AESopt2.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.AESopt2.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.GHash.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.GHash.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.PolyOps.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.PolyOps.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.HeapImpl.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.HeapImpl.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.HeapLemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.HeapLemmas.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AsLowStar.Test.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AsLowStar.Test.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Bignum.Lemmas.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Bignum.Lemmas.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Words.Seq.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Words.Seq.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Words.Seq_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Words.Seq_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Words.Two.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Words.Two.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Words.Two_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Words.Two_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Interop.Heap_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Interop.Heap_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Interop.Views.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Interop.Views.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Workarounds.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Workarounds.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.X64.Cpuid.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.X64.Cpuid.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.LowStarHelpers.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.LowStarHelpers.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Lemmas.Int.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Lemmas.Int.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2.Bits.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2.Bits.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2.Defs.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2.Defs.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Poly1305.Equiv.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Poly1305.Equiv.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Poly1305.Equiv.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Poly1305.Equiv.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Poly1305.Math.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Poly1305.Math.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Poly1305.Spec_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Poly1305.Spec_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Poly1305.Util.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Poly1305.Util.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.SHA.SHA_helpers.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.SHA.SHA_helpers.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Test.TestInline.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Test.TestInline.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Test.X64.Args.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Test.X64.Args.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Test.X64.Memcpy.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Test.X64.Memcpy.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Wrapper.X64.AES.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Wrapper.X64.AES.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Wrapper.X64.Sha.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Wrapper.X64.Sha.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.InsLemmas.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.InsLemmas.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.InsVector.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.InsVector.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Leakage_Ins.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Leakage_Ins.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Memory_Sems.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Memory_Sems.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.QuickCodes.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.QuickCodes.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.QuickCodes.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.QuickCodes.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Stack_Sems.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Stack_Sems.fst.hints -------------------------------------------------------------------------------- /hints/Vale.X64.Stack_Sems.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.Stack_Sems.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.X64.StateLemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.X64.StateLemmas.fst.hints -------------------------------------------------------------------------------- /hints/X64.Leakage_Ins_Xmm.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/X64.Leakage_Ins_Xmm.fst.hints -------------------------------------------------------------------------------- /hints/X64.Leakage_Ins_Xmm.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/X64.Leakage_Ins_Xmm.fsti.hints -------------------------------------------------------------------------------- /secure_api/vale/asm/benchmark-Darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/secure_api/vale/asm/benchmark-Darwin -------------------------------------------------------------------------------- /bindings/ocaml/index.mld: -------------------------------------------------------------------------------- 1 | {0 OCaml API for HACL* and EverCrypt} 2 | 3 | {{!Hacl_star.EverCrypt}EverCrypt} 4 | 5 | {{!Hacl_star.Hacl}Hacl} 6 | -------------------------------------------------------------------------------- /dist/test/ml/Spec_Chacha20_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_Chacha20_Test.test ()) then (print_endline "Spec_Chacha20_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /dist/test/ml/Spec_HMAC_DRBG_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_HMAC_DRBG_Test.test ()) then (print_endline "Spec_HMAC_DRBG_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /dist/test/ml/Spec_Poly1305_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_Poly1305_Test.test ()) then (print_endline "Spec_Poly1305_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /dist/test/ml/Spec_SecretBox_Test_AutoTest.ml: -------------------------------------------------------------------------------- 1 | if not (Spec_SecretBox_Test.test ()) then (print_endline "Spec_SecretBox_Test failed"; exit 1) 2 | -------------------------------------------------------------------------------- /dist/wasm/EverCrypt_TargetConfig.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/EverCrypt_TargetConfig.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_Chacha20Poly1305_32.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_Chacha20Poly1305_32.wasm -------------------------------------------------------------------------------- /dist/wasm/Hacl_IntTypes_Intrinsics.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/dist/wasm/Hacl_IntTypes_Intrinsics.wasm -------------------------------------------------------------------------------- /hints/EverCrypt.AutoConfig2.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.AutoConfig2.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.AutoConfig2.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.AutoConfig2.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.Curve25519.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.Curve25519.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.StaticConfig.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.StaticConfig.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.StaticConfig.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.StaticConfig.fsti.hints -------------------------------------------------------------------------------- /hints/EverCrypt.TargetConfig.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.TargetConfig.fst.hints -------------------------------------------------------------------------------- /hints/EverCrypt.TargetConfig.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/EverCrypt.TargetConfig.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.Comparison.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.Comparison.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.Definitions.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.Definitions.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.Karatsuba.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.Karatsuba.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.ModInv64.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.ModInv64.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.ModInvLimb.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.ModInvLimb.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.ModInvLimb.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.ModInvLimb.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.Montgomery.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.Montgomery.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Bignum.Montgomery.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Bignum.Montgomery.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Curve25519_64_Slow.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Curve25519_64_Slow.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.HKDF.Blake2b_256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.HKDF.Blake2b_256.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.HKDF.Blake2s_128.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.HKDF.Blake2s_128.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.HMAC.Blake2b_256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.HMAC.Blake2b_256.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.HMAC.Blake2s_128.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.HMAC.Blake2s_128.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.HPKE.Interface.DH.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.HPKE.Interface.DH.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Blake2.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Blake2.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Blake2b_256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Blake2b_256.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Blake2s_128.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Blake2s_128.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Core.Blake2.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Core.Blake2.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Core.Blake2.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Core.Blake2.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Hash.Definitions.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Hash.Definitions.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.BignumQ.Mul.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.BignumQ.Mul.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.BignumQ.Mul.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.BignumQ.Mul.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Blake2.Core.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Blake2.Core.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Blake2.Core.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Blake2.Core.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Chacha20.Vec.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Chacha20.Vec.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Ed25519.Sign.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Ed25519.Sign.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Frodo.Encode.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Frodo.Encode.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Frodo.Params.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Frodo.Params.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.Frodo.Sample.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.Frodo.Sample.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.K256.PointAdd.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.K256.PointAdd.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.K256.PointMul.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.K256.PointMul.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.K256.Verify.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.K256.Verify.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.P256.LowLevel.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.P256.LowLevel.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.P256.PointAdd.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.P256.PointAdd.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.PrecompTable.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.PrecompTable.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.RSAPSS.Keys.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.RSAPSS.Keys.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.SHA2.Generic.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.SHA2.Generic.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Impl.SHA512.ModQ.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Impl.SHA512.ModQ.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Meta.Chacha20.Vec.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Meta.Chacha20.Vec.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Meta.Curve25519.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Meta.Curve25519.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.RSAPSS2048_SHA256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.RSAPSS2048_SHA256.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.RSAPSS2048_SHA256.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.RSAPSS2048_SHA256.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.Bignum.Base.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.Bignum.Base.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.Bignum.ExpBM.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.Bignum.ExpBM.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.Bignum.ExpBM.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.Bignum.ExpBM.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.Bignum.ExpFW.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.Bignum.ExpFW.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.Bignum.ExpFW.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.Bignum.ExpFW.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.Bignum.ModInv.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.Bignum.ModInv.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.BignumQ.Mul.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.BignumQ.Mul.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.Chacha20.Vec.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.Chacha20.Vec.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.FFDHE.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.FFDHE.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.K256.Field52.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.K256.Field52.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.K256.Scalar.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.K256.Scalar.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.P256.Ladder.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.P256.Ladder.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.P256.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.P256.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.Poly1305.Vec.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.Poly1305.Vec.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.PrecompTable.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.PrecompTable.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Spec.SHA2.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Spec.SHA2.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Streaming.Blake2.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Streaming.Blake2.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Streaming.Functor.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Streaming.Functor.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Streaming.Functor.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Streaming.Functor.fsti.hints -------------------------------------------------------------------------------- /hints/Hacl.Streaming.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Streaming.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Streaming.Poly1305.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Streaming.Poly1305.fst.hints -------------------------------------------------------------------------------- /hints/Hacl.Streaming.SHA2_256.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Hacl.Streaming.SHA2_256.fst.hints -------------------------------------------------------------------------------- /hints/Lib.IntVector.Serialize.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.IntVector.Serialize.fst.hints -------------------------------------------------------------------------------- /hints/Lib.IntVector.Transpose.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.IntVector.Transpose.fst.hints -------------------------------------------------------------------------------- /hints/Lib.UpdateMulti.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.UpdateMulti.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Lib.UpdateMulti.Lemmas.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Lib.UpdateMulti.Lemmas.fsti.hints -------------------------------------------------------------------------------- /hints/MerkleTree.EverCrypt.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/MerkleTree.EverCrypt.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Chacha20Poly1305.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Chacha20Poly1305.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Cipher.Expansion.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Cipher.Expansion.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Cipher.Expansion.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Cipher.Expansion.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.Curve25519.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Curve25519.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Spec.ECDSA.Test.Vectors.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.ECDSA.Test.Vectors.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Ed25519.PointOps.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Ed25519.PointOps.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Frodo.KEM.Decaps.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Frodo.KEM.Decaps.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Frodo.KEM.Encaps.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Frodo.KEM.Encaps.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Frodo.KEM.KeyGen.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Frodo.KEM.KeyGen.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Hash.Definitions.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Hash.Definitions.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Hash.Incremental.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Hash.Incremental.fst.hints -------------------------------------------------------------------------------- /hints/Spec.Hash.Incremental.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.Hash.Incremental.fsti.hints -------------------------------------------------------------------------------- /hints/Spec.P256.Definitions.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.P256.Definitions.fst.hints -------------------------------------------------------------------------------- /hints/Spec.P256.Normalisation.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Spec.P256.Normalisation.fst.hints -------------------------------------------------------------------------------- /hints/Test.Vectors.Aes128Gcm.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Test.Vectors.Aes128Gcm.fst.hints -------------------------------------------------------------------------------- /hints/Test.Vectors.Curve25519.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Test.Vectors.Curve25519.fst.hints -------------------------------------------------------------------------------- /hints/Test.Vectors.Poly1305.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Test.Vectors.Poly1305.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.AES256_helpers.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.AES256_helpers.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.AES_helpers.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.AES_helpers.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.GCM_helpers.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.GCM_helpers.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.Gcm_simplify.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.Gcm_simplify.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.Gcm_simplify.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.Gcm_simplify.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.AESopt2.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.AESopt2.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.GCMdecrypt.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.GCMdecrypt.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.GCMencrypt.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.GCMencrypt.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.GF128_Init.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.GF128_Init.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.GF128_Mul.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.GF128_Mul.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.GF128_Mul.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.GF128_Mul.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AES.X64.PolyOps.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AES.X64.PolyOps.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.BufferFriend.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.BufferFriend.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.BufferFriend.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.BufferFriend.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.HeapLemmas.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.HeapLemmas.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.HeapTypes_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.HeapTypes_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.MachineHeap.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.MachineHeap.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.MachineHeap.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.MachineHeap.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.MachineHeap_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.MachineHeap_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.TypesNative.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.TypesNative.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Arch.TypesNative.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Arch.TypesNative.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.AsLowStar.ValeSig.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AsLowStar.ValeSig.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AsLowStar.Wrapper.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AsLowStar.Wrapper.fst.hints -------------------------------------------------------------------------------- /hints/Vale.AsLowStar.Wrapper.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.AsLowStar.Wrapper.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Def.PossiblyMonad.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.PossiblyMonad.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Def.TypesNative_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.TypesNative_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Words.Four_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Words.Four_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Words.Four_s.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Words.Four_s.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Words.Seq_s.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Words.Seq_s.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Def.Words.Two_s.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Def.Words.Two_s.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Lib.Workarounds.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Lib.Workarounds.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Lemmas.Int.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Lemmas.Int.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2.Bits.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2.Bits.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2.Bits_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2.Bits_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2.Bits_s.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2.Bits_s.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2.Defs_s.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2.Defs_s.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2.Galois.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2.Galois.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2.Galois.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2.Galois.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2.Lemmas.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2.Lemmas.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2.Lemmas.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2.Lemmas.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2.Words.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2.Words.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Math.Poly2.Words.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Math.Poly2.Words.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.SHA.SHA_helpers.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.SHA.SHA_helpers.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.SHA.Simplify_Sha.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.SHA.Simplify_Sha.fst.hints -------------------------------------------------------------------------------- /hints/Vale.SHA.Simplify_Sha.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.SHA.Simplify_Sha.fsti.hints -------------------------------------------------------------------------------- /hints/Vale.Stdcalls.X64.Aes.fst.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Stdcalls.X64.Aes.fst.hints -------------------------------------------------------------------------------- /hints/Vale.Stdcalls.X64.Aes.fsti.hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonidas-from-XIV/hacl-star/master/hints/Vale.Stdcalls.X64.Aes.fsti.hints --------------------------------------------------------------------------------