hacl-star VS libsparkcrypto

Compare hacl-star vs libsparkcrypto and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
hacl-star libsparkcrypto
8 1
1,578 27
0.6% -
9.6 1.8
2 days ago about 3 years ago
F* Ada
Apache License 2.0 -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

hacl-star

Posts with mentions or reviews of hacl-star. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-15.
  • Let's collect relatively new research programming languages in this thread
    19 projects | /r/ProgrammingLanguages | 15 Nov 2022
    Jasmin and F* don't have similar goals, Jasmin is a language designed to precisely express low-level code, while F* is a generalist language for verified programming. There is a subsystem of F* that performs extraction to "readable C code", Karamel (used to be called Kremlin), but you get the usual limitations of C code as a high-level assembler, and also an embedded assembly layer built on Vale. Project Everest therefore generates artifacts that are a mix of C and assembly, rather than a new low-level language design as Jasmin.
  • Ten Years of TypeScript
    8 projects | news.ycombinator.com | 1 Oct 2022
    Traditional design by contract checks the contracts at runtime. They can be understood as a form of dynamic typing with quite complicated types, which may be equivalent to refinement types

    But you can check contracts at compile time too. It's quite the same thing as static typing with something like refinement types. That's because, while with contracts we can add preconditions like "the size of this array passed as parameter must be a prime number", with refinement types we can define the type of arrays whose size is a prime number, and then have this type as the function argument. (likewise, postconditions can be modeled by the return type of the function)

    See for example this Rust library: https://docs.rs/contracts/latest/contracts/

    It will by default check the contracts at runtime, but has an option to check them at compile time with https://github.com/facebookexperimental/MIRAI

    Now, this Rust library isn't generally understood as creating another type system on top of Rust, but we could do the legwork to develop a type theory that models how it works, and show the equivalence.

    Or, another example, Liquid Haskell: https://ucsd-progsys.github.io/liquidhaskell/ it implements a variant of refinement types called liquid types, which is essentially design by contract checked at compile type. In this case, the type theory is already developed. I expect Liquid Haskell to be roughly comparable to Rust's contracts checked by MIRAI.

    Now, what we could perhaps say is that refinement types are so powerful that they don't feel like regular types! And, while that's true, there are type systems even more powerful: dependent types used in languages like Coq, Lean and F* to prove mathematical theorems (your type is a theorem, and your code, if it typechecks, is a proof of that theorem).

    Dependent types were leveraged to create a verified TLS implementation that mathematically proves the absence of large class of bugs, miTLS https://www.mitls.org/ (they discovered a number of vulnerabilities in TLS implementations and proved that their implementation isn't vulnerable), and HACL* https://github.com/hacl-star/hacl-star a verified crypto implementation used by Firefox and Wireguard. They are part of Project Everest https://project-everest.github.io/ which aims to develop provably secure communications software.

  • Securing your crypto wallet in a way that gives respect to what cryptography actually is
    3 projects | /r/CryptoCurrency | 21 Nov 2021
    With that said, it's a very good thought to make sure that the software you're using is actually secure before trusting it. Personally, I think it's safe to use GnuPG and KeePass/Bitwarden, which have all been audited by the likes of Cure53, but if you're really paranoid, you could always use a formally-verified implementation of your desired algorithm (many are supplied in HACL*, for example)... In this case, I use the term "formally-verified" to mean that the implementation is mathematically proven to guarantee the properties of the algorithm (i.e., there are no "bugs" that affect output at the implementation level)...
  • How We Proved the Eth2 Deposit Contract Is Free of Runtime Errors
    4 projects | news.ycombinator.com | 13 Sep 2021
    CompCert is also very impressive. It's not, however, free software / open source (the source is available though)

    https://www.absint.com/compcert/structure.htm

    A problem with both seL4 and CompCert is that the code written to express the proofs is huge, much larger than code that actually does stuff. This puts a ceiling on the size of the projects we can verify.

    F* is a language that tries to address that, by finding proofs with z3, a smt prover; z3 can't prove everything on its own but it cuts down proof code by orders of magnitude. They have written a verified cryptography stack and TLS stack, and want to write a whole verified http stack.

    https://www.fstar-lang.org/

    https://github.com/project-everest/hacl-star

    https://www.mitls.org/

    https://project-everest.github.io/

    F* (through Low, a verified low-level subset of F) can extract verified code to C, which is kind of the inverse than the seL4 proof: seL4 begins with C code and enriches it with proofs of correctness; hacl* (a verified crypto F* lib) begins with a proven correct F* code and extracts C code (I gather the actual crypto primitives is compiled directly to asm code because C has some problems with constant time stuff). This enables hacl* to make bindings to other languages that can just call C code, like this Rust binding

    https://github.com/franziskuskiefer/evercrypt-rust

    Also this F* stuff is all free software / open source, so it might become a very prevalent crypto and TLS stack

  • Awesome Rust Cryptography list compiled by the Rust Cryptography Interest Group (RCIG)
    4 projects | /r/rust | 27 Jul 2021
    This is SO exciting!!! Ituses https://github.com/project-everest/hacl-star - a formally verified cryptography library. And it compiles down to C code, so I suppose it's fast.
  • Formal is fast: performance analysis and tuning of SPARKNaCl
    2 projects | /r/ada | 11 Feb 2021
    Whats cool with that project and overlaps with SPARKNaCI would be the HACL* Library. Its purpose is to provide a formally verified library of modern cryptographic algorithms all written in a subset of F* called Low* and compiled to C using a compiler called KreMLin. The outputs of this are already being used Firefox, see here & here.

libsparkcrypto

Posts with mentions or reviews of libsparkcrypto. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-10-27.

What are some alternatives?

When comparing hacl-star and libsparkcrypto you can also consider the following projects:

acsl-by-example - Public snapshots of "ACSL by Example"

evercrypt-rust - Rust bindings for HACL & Evercrypt

RCIG_Coordination_Repo - A Coordination repo for all things Rust Cryptography oriented

practical-fm - A gently curated list of companies using verification formal methods in industry

verdi-raft - An implementation of the Raft distributed consensus protocol, verified in Coq using the Verdi framework

karamel - KaRaMeL is a tool for extracting low-level F* programs to readable C code

FStar - A Proof-oriented Programming Language

MIRAI - Rust mid-level IR Abstract Interpreter

effekt - A research language with effect handlers and lightweight effect polymorphism

basalt - Collection of formally verified building blocks

ic3po - IC3PO: IC3 for Proving Protocol Properties

awesome-programming-languages - The list of an awesome programming languages that you might be interested in