Skip to content

Instantly share code, notes, and snippets.

@nakov
nakov / ECDSA-secp256k1-example.cs
Last active October 26, 2022 23:18
ECDSA with secp256k1 in C# - Generate Keys, Sign, Verify
using System;
using System.Text;
using Nethereum.Hex.HexConvertors.Extensions;
using Nethereum.Signer;
using Nethereum.Util;
using Nethereum.Signer.Crypto;
class ECDSASecp256k1Example
{
static void Main()