Keysmith.Net.Secp256k1 0.4.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Keysmith.Net.Secp256k1 --version 0.4.0                
NuGet\Install-Package Keysmith.Net.Secp256k1 -Version 0.4.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Keysmith.Net.Secp256k1" Version="0.4.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Keysmith.Net.Secp256k1 --version 0.4.0                
#r "nuget: Keysmith.Net.Secp256k1, 0.4.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Keysmith.Net.Secp256k1 as a Cake Addin
#addin nuget:?package=Keysmith.Net.Secp256k1&version=0.4.0

// Install Keysmith.Net.Secp256k1 as a Cake Tool
#tool nuget:?package=Keysmith.Net.Secp256k1&version=0.4.0                

Keysmith.Net

Modern .NET9 library implementing common cryptographic standards used by various cryptocurrencies like BIP32/SLIP10, BIP39 and BIP44.

The intention of this library is to provide minimal no boilerplate implemenations of these cryptographic primitives while maintaining the best possible performance using the latest language features.

Installation

Base Package: Keysmith.Net

The base package is always required.

Optional curve packages:

Installing a curve package will provide a singleton instance of that specific curve to be used in SLIP10 derivations.

Keysmith.Net.Secp256k1

Support for the Secp256k1 curve. Requires the secp256k1 c library in the same directory as your binary to work. Consider building it from source or installing the Secp256k1.Native package which bundles it for you.

Features

BIP39

Converts mnemonic words to the seed used for deriving private keys.

[!NOTE]
Only supports the english wordlist.

Usage
byte[] seed = BIP39.MnemonicToSeed("[mnemonics]");
//Or using spans
Span<byte> seed = stackalloc byte[256];
BIP39.TryMnemonicToSeed(seed, "[mnemonics]")
Performance

<img src="./img/bip39_bench.png" />

BIP32/SLIP10

Takes the seed calculated using BIP39 and derives the master private key and child keys using BIP44 derivation paths.

Usage
(byte[] key, byte[] chainCode) = Slip10.DerivePath(
    Secp256k1.Instance,
    seed,
    "m/44'/60'/0'/0/0"
);
//Or using spans
Span<byte> key = stackalloc byte[32];
Span<byte> chainCode = stackalloc byte[32];
Span<uint> path = stackalloc uint[5];
BIP44.Ethereum(path);
Slip10.TryDerivePath(
    Secp256k1.Instance,
    seed,
    key,
    chainCode,
    path
);
Performance

<img src="./img/slip10_bench.png" />

BIP44

Defines the format for derivation paths used for Bitcoin and a lot of other chains following the same spec.

This library defines helper methods to construct these paths to be used for BIP32 derivation.

Usage
string path = BIP44.Ethereum(5);
//     ^ "m/44'/60'/0'/0/5"
// Or using spans
Span<uint> path = stackalloc uint[5];
BIP44.Ethereum(path, 5);
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.2 2 11/21/2024
1.2.1 27 11/21/2024
1.2.0 21 11/21/2024
1.1.2 21 11/21/2024
1.1.1 20 11/21/2024
1.1.0 29 11/21/2024
1.0.1 45 11/18/2024
1.0.0 39 11/18/2024
0.5.0 44 11/18/2024
0.4.0 43 11/18/2024
0.3.0 44 11/18/2024