Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 345 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 345 Bytes

AES Everywhere - Cross Language Encryption Library

GoLang implementation

Cipher: AES/256/CBC/PKCS7Padding with random generated salt

Usage

import "github.com/mervick/aes-everywhere/go/aes256"

// encryption
encrypted := aes256.Encrypt("TEXT", "PASSWORD")

// decryption
decrypted := aes256.Decrypt(encrypted, "PASSWORD")