Skip to content

Instantly share code, notes, and snippets.

@Apurer
Apurer / CreatePrivateKey.go
Last active May 21, 2020 00:45
Golang snippet of code for creating private key for AES encryption.
package main
import (
"crypto/rsa"
"encoding/pem"
"crypto/elliptic"
"crypto/ecdsa"
"crypto/rand"
"crypto/x509"
"errors"
#!/bin/sh
# For debugging use iptables -v.
IPTABLES="/sbin/iptables"
IP6TABLES="/sbin/ip6tables"
MODPROBE="/sbin/modprobe"
RMMOD="/sbin/rmmod"
ARP="/usr/sbin/arp"
@Apurer
Apurer / hello_world.md
Last active March 7, 2020 11:48
Hello World Examples

Run ruby hello_world.rb or python hello_world.py to print Hello World!!!