Skip to content

Instantly share code, notes, and snippets.

[pull]
rebase = true
[alias]
co = checkout
cob = checkout -b
st = status
lg = !sh -c 'git log --all --decorate --oneline --graph -n $1' -
pf = push -f
[core]
@Johannbr
Johannbr / break-short.c
Created January 15, 2018 21:50 — forked from jhoenicke/break-short.c
Program to brute force private keys from public keys using the baby-step giant-step algorithm.
/**********************************************************************
* Copyright (c) 2017, Jochen Hoenicke *
* *
* Compile with: *
* gcc -O2 -I secp256k1/src/ -I secp256k1/ break_short.c -lgmp *
**********************************************************************/
#include "libsecp256k1-config.h"
#include <stdio.h>