#ecdsa #crypto #bitcoin #secp256k1 #no-std #public-key

no-std libsecp256k1-core

Core functions for pure Rust secp256k1 implementation

5 unstable releases

0.3.0 Sep 17, 2021
0.2.3 Sep 17, 2021
0.2.2 Jul 20, 2021
0.2.1 Jun 18, 2021
0.1.0 Mar 25, 2020

#38 in #ecdsa

Download history 89572/week @ 2023-12-04 96164/week @ 2023-12-11 78842/week @ 2023-12-18 38873/week @ 2023-12-25 67605/week @ 2024-01-01 88498/week @ 2024-01-08 94445/week @ 2024-01-15 96560/week @ 2024-01-22 89359/week @ 2024-01-29 93211/week @ 2024-02-05 87787/week @ 2024-02-12 104566/week @ 2024-02-19 98796/week @ 2024-02-26 91541/week @ 2024-03-04 98699/week @ 2024-03-11 104693/week @ 2024-03-18

400,165 downloads per month
Used in 2,012 crates (5 directly)

Apache-2.0

155KB
4K SLoC

SECP256K1 implementation in pure Rust

SECP256K1 implementation with no_std support. Currently we have implementation for:

  • Convert a private key to a public key.
  • Sign messages.
  • Signature verification.
  • Public key recovery from signed messages.
  • Shared secrets.

Feature flags

  • std: If disabled, works in no_std environment. Enabled by default.
  • hmac: Add certain features that requires the HMAC-DRBG. This includes signing. Enabled by default.
  • static-context: To speed up computation, the library uses a pre-computed table context for many ecmult operations. This feature flag puts the context directly as static variables. If disabled, the context must be created from heap manually. Increases binary size, enabled by default.
  • lazy-static-context: Instead of storing the pre-computed table context as static variables, store it as a variable that dynamically allocates the context in heap via lazy_static. It overwrites static-context. Impact bootstrap performance and only available in std, disabled by default.

Development workflow

Branch

This repository uses develop branch for development. Changes are periodically merged to master branch.

Pull request

All changes (except new releases) are handled through pull requests. Please open your PR against develop branch.

Versioning

libsecp256k1 follows Semantic Versioning. An unreleased crate in the repository will have the -dev suffix in the end, and we do rolling releases.

When you make a pull request against this repository, please also update the affected crates' versions, using the following rules. Note that the rules should be applied recursively -- if a change modifies any upper crate's dependency (even just the Cargo.toml file), then the upper crate will also need to apply those rules.

Additionally, if your change is notable, then you should also modify the corresponding CHANGELOG.md file, in the "Unreleased" section.

If the affected crate already has -dev suffix:

  • If your change is a patch, then you do not have to update any versions.
  • If your change introduces a new feature, please check if the local version already had its minor version bumped, if not, bump it.
  • If your change modifies the current interface, please check if the local version already had its major version bumped, if not, bump it.

If the affected crate does not yet have -dev suffix:

  • If your change is a patch, then bump the patch version, and add -dev suffix.
  • If your change introduces a new feature, then bump the minor version, and add -dev suffix.
  • If your change modifies the current interface, then bump the major version, and add -dev suffix.

If your pull request introduces a new crate, please set its version to 1.0.0-dev.


lib.rs:

Core libraries for libsecp256k1.

Dependencies

~355KB