Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
############################################
# File Name : buildcurl.sh
# Purpose :
# Creation Date : 04-07-2016
# Last Modified : Thu Apr 7 16:38:10 2016
@kiyor
kiyor / AES.go
Created May 7, 2018 08:13 — forked from shautzin/AES.go
AES/CBC/PKCS5Padding implementation by Golang
package main
import (
"bytes"
"crypto/aes"
"crypto/cipher"
"fmt"
)
func main() {