![]() |
VOOZH | about |
dotnet add package Nethereum.KeyStore --version 6.1.0
NuGet\Install-Package Nethereum.KeyStore -Version 6.1.0
<PackageReference Include="Nethereum.KeyStore" Version="6.1.0" />
<PackageVersion Include="Nethereum.KeyStore" Version="6.1.0" />Directory.Packages.props
<PackageReference Include="Nethereum.KeyStore" />Project file
paket add Nethereum.KeyStore --version 6.1.0
#r "nuget: Nethereum.KeyStore, 6.1.0"
#:package Nethereum.KeyStore@6.1.0
#addin nuget:?package=Nethereum.KeyStore&version=6.1.0Install as a Cake Addin
#tool nuget:?package=Nethereum.KeyStore&version=6.1.0Install as a Cake Tool
Password-encrypted private key storage using the Web3 Secret Storage Definition standard.
Nethereum.KeyStore implements the Web3 Secret Storage Definition for encrypting and storing Ethereum private keys. This is a standard format for encrypted key storage used across the Ethereum ecosystem.
Key Features:
Use Cases:
dotnet add package Nethereum.KeyStore
Nethereum:
External:
using Nethereum.KeyStore;
using Nethereum.Signer;
using Nethereum.Hex.HexConvertors.Extensions;
// Generate a new key
var ecKey = EthECKey.GenerateKey();
// Encrypt and generate keystore JSON
var service = new KeyStoreScryptService();
string password = "testPassword";
string json = service.EncryptAndGenerateKeyStoreAsJson(
password,
ecKey.GetPrivateKeyAsBytes(),
ecKey.GetPublicAddress()
);
// Decrypt later
byte[] privateKey = service.DecryptKeyStoreFromJson(password, json);
using Nethereum.KeyStore;
using Nethereum.Signer;
using Nethereum.Hex.HexConvertors.Extensions;
var ecKey = EthECKey.GenerateKey();
var keyStoreScryptService = new KeyStoreScryptService();
string password = "testPassword";
// Encrypt and serialize to JSON
string json = keyStoreScryptService.EncryptAndGenerateKeyStoreAsJson(
password,
ecKey.GetPrivateKeyAsBytes(),
ecKey.GetPublicAddress()
);
// Save to file
File.WriteAllText($"keystore-{ecKey.GetPublicAddress()}.json", json);
// Decrypt to verify
byte[] key = keyStoreScryptService.DecryptKeyStoreFromJson(password, json);
Assert.Equal(ecKey.GetPrivateKey(), key.ToHex(true));
using Nethereum.KeyStore;
using Nethereum.KeyStore.Model;
using Nethereum.Signer;
using Nethereum.Hex.HexConvertors.Extensions;
var keyStoreService = new KeyStoreScryptService();
// Lower N for faster encryption (WASM, mobile, testing)
// Default: N=262144, R=1, P=8, Dklen=32
var scryptParams = new ScryptParams { Dklen = 32, N = 32, R = 1, P = 8 };
var ecKey = EthECKey.GenerateKey();
string password = "testPassword";
// Encrypt with custom parameters — pass address and ScryptParams object
var keyStore = keyStoreService.EncryptAndGenerateKeyStore(
password,
ecKey.GetPrivateKeyAsBytes(),
ecKey.GetPublicAddress(),
scryptParams
);
// Or use the JSON shortcut directly
string json = keyStoreService.EncryptAndGenerateKeyStoreAsJson(
password, ecKey.GetPrivateKeyAsBytes(), ecKey.GetPublicAddress(), scryptParams);
// Decrypt
byte[] decryptedKey = keyStoreService.DecryptKeyStoreFromJson(password, json);
using Nethereum.KeyStore;
using Nethereum.Hex.HexConvertors.Extensions;
var scryptKeyStoreJson = @"{
""crypto"" : {
""cipher"" : ""aes-128-ctr"",
""cipherparams"" : {
""iv"" : ""83dbcc02d8ccb40e466191a123791e0e""
},
""ciphertext"" : ""d172bf743a674da9cdad04534d56926ef8358534d458fffccd4e6ad2fbde479c"",
""kdf"" : ""scrypt"",
""kdfparams"" : {
""dklen"" : 32,
""n"" : 262144,
""r"" : 1,
""p"" : 8,
""salt"" : ""ab0c7876052600dd703518d6fc3fe8984592145b591fc8fb5c6d43190334ba19""
},
""mac"" : ""2103ac29920d71da29f15d75b4a16dbe95cfd7ff8faea1056c33131d846e3097""
},
""id"" : ""3198bc9c-6672-5ab3-d995-4942343ae5b6"",
""version"" : 3
}";
string password = "testpassword";
var keyStoreScryptService = new KeyStoreScryptService();
// Deserialize and decrypt
var keyStore = keyStoreScryptService.DeserializeKeyStoreFromJson(scryptKeyStoreJson);
byte[] privateKey = keyStoreScryptService.DecryptKeyStore(password, keyStore);
Console.WriteLine($"Private Key: {privateKey.ToHex()}");
// Output: 7a28b5ba57c53603b0b07b56bba752f7784bf506fa95edc395f5cf6c7514fe9d
using Nethereum.KeyStore;
using Nethereum.Signer;
using Nethereum.Hex.HexConvertors.Extensions;
var ecKey = EthECKey.GenerateKey();
var keyStorePbkdf2Service = new KeyStorePbkdf2Service();
string password = "testPassword";
// Encrypt with PBKDF2 (faster but less secure than Scrypt)
string json = keyStorePbkdf2Service.EncryptAndGenerateKeyStoreAsJson(
password,
ecKey.GetPrivateKeyAsBytes(),
ecKey.GetPublicAddress()
);
// Decrypt
byte[] key = keyStorePbkdf2Service.DecryptKeyStoreFromJson(password, json);
Assert.Equal(ecKey.GetPrivateKey(), key.ToHex(true));
using Nethereum.KeyStore;
string keystoreJson = File.ReadAllText("wallet.json");
var keyStoreKdfChecker = new KeyStoreKdfChecker();
var kdfType = keyStoreKdfChecker.GetKeyStoreKdfType(keystoreJson);
if (kdfType == KeyStoreKdfChecker.KdfType.scrypt)
{
var service = new KeyStoreScryptService();
byte[] privateKey = service.DecryptKeyStoreFromJson(password, keystoreJson);
}
else if (kdfType == KeyStoreKdfChecker.KdfType.pbkdf2)
{
var service = new KeyStorePbkdf2Service();
byte[] privateKey = service.DecryptKeyStoreFromJson(password, keystoreJson);
}
using Nethereum.KeyStore;
using Nethereum.Signer;
using Nethereum.Hex.HexConvertors.Extensions;
var ecKey = EthECKey.GenerateKey();
var keyStoreService = new KeyStoreService();
string password = "testPassword";
// Uses default Scrypt parameters
string json = keyStoreService.EncryptAndGenerateDefaultKeyStoreAsJson(
password,
ecKey.GetPrivateKeyAsBytes(),
ecKey.GetPublicAddress()
);
byte[] key = keyStoreService.DecryptKeyStoreFromJson(password, json);
Assert.Equal(ecKey.GetPrivateKey(), key.ToHex(true));
Scrypt-based keystore encryption (recommended).
public class KeyStoreScryptService
{
// Encrypt and generate JSON (default parameters)
public string EncryptAndGenerateKeyStoreAsJson(string password, byte[] privateKey, string address);
// Encrypt with default Scrypt parameters
public KeyStore<ScryptParams> EncryptAndGenerateKeyStore(
string password, byte[] privateKey, string address);
// Encrypt with custom Scrypt parameters
public KeyStore<ScryptParams> EncryptAndGenerateKeyStore(
string password, byte[] privateKey, string address, ScryptParams kdfParams);
// Encrypt with custom parameters directly to JSON
public string EncryptAndGenerateKeyStoreAsJson(
string password, byte[] privateKey, string address, ScryptParams kdfParams);
// Serialize keystore to JSON
public string SerializeKeyStoreToJson(KeyStore<ScryptParams> keyStore);
// Deserialize JSON to keystore
public KeyStore<ScryptParams> DeserializeKeyStoreFromJson(string json);
// Decrypt from JSON
public byte[] DecryptKeyStoreFromJson(string password, string json);
// Decrypt from keystore object
public byte[] DecryptKeyStore(string password, KeyStore<ScryptParams> keyStore);
}
Default Scrypt Parameters:
N = 262144 // CPU/memory cost (2^18)
R = 1 // Block size
P = 8 // Parallelization
Dklen = 32 // Derived key length
PBKDF2-based keystore encryption (legacy).
public class KeyStorePbkdf2Service
{
// Same methods as KeyStoreScryptService but using PBKDF2
public string EncryptAndGenerateKeyStoreAsJson(string password, byte[] privateKey, string address);
public KeyStore<Pbkdf2Params> DeserializeKeyStoreFromJson(string json);
public byte[] DecryptKeyStoreFromJson(string password, string json);
public byte[] DecryptKeyStore(string password, KeyStore<Pbkdf2Params> keyStore);
}
Unified service with default encryption.
public class KeyStoreService
{
// Encrypt with default Scrypt parameters
public string EncryptAndGenerateDefaultKeyStoreAsJson(string password, byte[] privateKey, string address);
// Decrypt (auto-detects KDF type)
public byte[] DecryptKeyStoreFromJson(string password, string json);
}
Detect KDF type from JSON.
public class KeyStoreKdfChecker
{
public enum KdfType { scrypt, pbkdf2 }
public KdfType GetKeyStoreKdfType(string json);
public bool IsScryptKdf(string json);
public bool IsPbkdf2Kdf(string json);
}
public class ScryptParams
{
public int Dklen { get; set; } // Derived key length (32)
public int N { get; set; } // CPU/memory cost (262144)
public int R { get; set; } // Block size (1)
public int P { get; set; } // Parallelization (8)
public string Salt { get; set; } // Random salt (hex)
}
public class Pbkdf2Params
{
public int Dklen { get; set; } // Derived key length (32)
public int C { get; set; } // Iteration count (262144)
public string Prf { get; set; } // PRF algorithm (hmac-sha256)
public string Salt { get; set; } // Random salt (hex)
}
public class KeyStore<TKdfParams>
{
public CryptoInfo<TKdfParams> Crypto { get; set; }
public string Id { get; set; } // UUID
public int Version { get; set; } // Always 3
public string Address { get; set; } // Ethereum address (optional)
}
N = 262144 // 2^18 - Strong security, ~100ms encryption
R = 1
P = 8
Use for: Desktop applications, servers, production wallets
N = 32 // 2^5 - Fast encryption, weaker security
R = 1
P = 8
Use for: Browser WASM, mobile apps, development/testing
N = 1048576 // 2^20 - Very strong security, ~3s encryption
R = 8
P = 1
Use for: Cold storage, high-value accounts, paranoid security
| Parameter | Effect | Security Impact | Performance Impact |
|---|---|---|---|
| N | CPU/memory cost | Exponential | Exponential |
| R | Block size | Linear | Linear |
| P | Parallelization | Linear | Linear (if parallel) |
N dominates: Doubling N doubles time and memory. N=262144 uses ~256MB RAM.
Keystore JSON structure:
{
"crypto": {
"cipher": "aes-128-ctr",
"cipherparams": { "iv": "..." },
"ciphertext": "...",
"kdf": "scrypt",
"kdfparams": {
"dklen": 32,
"n": 262144,
"r": 1,
"p": 8,
"salt": "..."
},
"mac": "..."
},
"id": "3198bc9c-6672-5ab3-d995-4942343ae5b6",
"version": 3
}
Fields:
aes-128-ctrscrypt or pbkdf23| Feature | Scrypt | PBKDF2 |
|---|---|---|
| Security | Memory-hard, ASIC-resistant | CPU-only, ASIC-vulnerable |
| Speed | Slower (~100ms default) | Faster (~50ms) |
| Recommendation | Use this | Legacy only |
Use Scrypt unless you need compatibility with very old systems.
Standard naming convention used across Ethereum tools:
UTC--<created_at UTC ISO8601>--<address hex>
Example:
UTC--2024-01-15T10-30-45.123Z--0x12890d2cce102216644c59dae5baed380d84830c
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net451 net451 is compatible. net452 net452 was computed. net46 net46 was computed. net461 net461 is compatible. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on Nethereum.KeyStore:
| Package | Downloads |
|---|---|
|
Nethereum.Web3
Nethereum.Web3 Ethereum Web3 Class Library to interact via RPC with an Ethereum client, for example geth. Including contract interaction, deployment, transaction, encoding / decoding and event filters |
|
|
Nethereum.Accounts
Nethereum.Accounts Ethereum Accounts and Transaction Managers Class Library |
|
|
Nethereum
Package Description |
|
|
AElf.Client
This is a C# client library, used to communicate with the AElf API. |
|
|
AElf.OS
Main module for the OS layer. |
Showing the top 2 popular GitHub repositories that depend on Nethereum.KeyStore:
| Repository | Stars |
|---|---|
|
AElfProject/AElf
An AI-enhanced cloud-native layer-1 blockchain network.
|
|
|
biheBlockChain/MyLinkToken
开源链克口袋,玩客币钱包
|
| Version | Downloads | Last Updated |
|---|---|---|
| 6.1.0 | 49,398 | 3/25/2026 |
| 6.0.4 | 10,235 | 3/18/2026 |
| 6.0.3 | 1,599 | 3/18/2026 |
| 6.0.1 | 2,512 | 3/17/2026 |
| 6.0.0 | 3,767 | 3/16/2026 |
| 5.8.0 | 79,138 | 1/6/2026 |
| 5.0.0 | 408,092 | 5/28/2025 |
| 4.29.0 | 285,699 | 2/10/2025 |
| 4.28.0 | 86,245 | 1/7/2025 |
| 4.27.1 | 13,809 | 12/24/2024 |
| 4.27.0 | 7,325 | 12/24/2024 |
| 4.26.0 | 105,418 | 10/1/2024 |
| 4.25.0 | 33,193 | 9/19/2024 |
| 4.21.4 | 128,155 | 8/9/2024 |
| 4.21.3 | 11,682 | 7/22/2024 |
| 4.21.2 | 76,712 | 6/26/2024 |
| 4.21.1 | 3,687 | 6/26/2024 |
| 4.21.0 | 17,253 | 6/18/2024 |
| 4.20.0 | 372,227 | 3/28/2024 |
| 4.19.0 | 99,181 | 2/16/2024 |