Skip to content

Instantly share code, notes, and snippets.

View jparagon's full-sized avatar
😁
Why is it a penny for your thoughts but you put your two cents in? -S.W.

JP Aragon jparagon

😁
Why is it a penny for your thoughts but you put your two cents in? -S.W.
View GitHub Profile
@jparagon
jparagon / ECDSA-secp256k1-example.cs
Created October 26, 2022 23:18 — forked from nakov/ECDSA-secp256k1-example.cs
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()
@jparagon
jparagon / logstash.conf
Last active December 20, 2015 11:19 — forked from ssp/logstash.conf
input {
stdin {
type => "stdin-type"
}
file {
type => "apache"
path => ["/var/log/apache2/access_log", "/var/log/apache2/error_log", "/var/log/apache2/ssl_request_log"]
}
input {
stdin {
type => "stdin-type"
}
file {
type => "apache"
path => ["/var/log/apache2/access_log", "/var/log/apache2/error_log", "/var/log/apache2/ssl_request_log"]
}