Skip to content

Instantly share code, notes, and snippets.

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@daniel-e
daniel-e / Ecc.java
Created December 22, 2020 22:10
Compute Elliptic Curve Signatures With Java
// Compile with: javac Ecc.java
// Run with: java Ecc
import java.security.*;
import java.security.spec.*;
public class Ecc {
public static void main(String[] args) throws Exception {
@daniel-e
daniel-e / main.rs
Last active May 2, 2017 14:28 — forked from wITTus/main.rs
Concurrent search of MD5-hashed IP through the entire IPv4 space in Rust
// [dependencies]
// rust-crypto = "0.2.36"
extern crate crypto;
use std::thread;
use crypto::md5::Md5;
use crypto::digest::Digest;
use std::process;
fn main() {