Skip to content

Instantly share code, notes, and snippets.

View pk-development's full-sized avatar

Paul Kinsella pk-development

View GitHub Profile

Go Cheat Sheet

Credits

Most example code taken from A Tour of Go, which is an excellent introduction to Go. If you're new to Go, do that tour. Seriously.

Go in a Nutshell

  • Imperative language
@pk-development
pk-development / AES256Cryptor.java
Created November 13, 2019 23:29 — forked from kientux/AES256Cryptor.java
Encrypt and decrypt AES-256 (in CryptoJS way)
/**
* Created by kientux on 3/20/15
*/
import android.util.Base64;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import java.util.Arrays;