Golang : Encrypt and decrypt data with AES crypto
In this tutorial we will learn how to encrypt data with Golang's AES crypto package.
AES or Advanced Encryption Standard is encryption algorithm based on the Rijndael cipher developed by the Belgian cryptographers, Joan Daemen and Vincent Rijmen. AES was adopted for encryption by the United States government and is now used worldwide.
Below is the source code for encrypting and decrypting a 16 bytes string message :
package main
import (
"fmt"
"crypto/aes"
"crypto/cipher"
)
func main() {
//The key argument should be the AES key, either 16, 24, or 32 bytes to select AES-128, AES-192, or AES-256.
key := "opensesame123456" // 16 bytes!
block,err := aes.NewCipher([]byte(key))
if err != nil {
panic(err)
}
fmt.Printf("%d bytes NewCipher key with block size of %d bytes\n", len(key), block.BlockSize)
str := []byte("Hello World!")
// 16 bytes for AES-128, 24 bytes for AES-192, 32 bytes for AES-256
ciphertext := []byte("abcdef1234567890")
iv := ciphertext[:aes.BlockSize] // const BlockSize = 16
// encrypt
encrypter := cipher.NewCFBEncrypter(block, iv)
encrypted := make([]byte, len(str))
encrypter.XORKeyStream(encrypted, str)
fmt.Printf("%s encrypted to %v\n", str, encrypted)
// decrypt
decrypter := cipher.NewCFBDecrypter(block, iv) // simple!
decrypted := make([]byte, len(str))
decrypter.XORKeyStream(decrypted, encrypted)
fmt.Printf("%v decrypt to %s\n", encrypted, decrypted)
}
Executing the above code will produce the following output :
16 bytes NewCipher key with block size of 9360 bytes
Hello World! encrypted to [246 121 236 39 139 97 102 181 16 102 237 145]
[246 121 236 39 139 97 102 181 16 102 237 145] decrypt to Hello World!
Hope this tutorial is useful for those learning Go and AES crypto.
Reference :
See also : Golang : md5 hash of a string
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+10k Golang : Convert file unix timestamp to UTC time example
+5.6k Golang : Denco multiplexer example
+5.3k PHP : Convert string to timestamp or datestamp before storing to database(MariaDB/MySQL)
+7.2k Golang : How to handle file size larger than available memory panic issue
+7.5k Golang : get the current working directory of a running program
+5.6k Unix/Linux : How to open tar.gz file ?
+5.8k Java : Human readable password generator
+9.1k Golang : Create unique title slugs example
+38.8k Golang : How to read CSV file
+7.2k Golang : Dealing with struct's private part
+30.4k Golang : Download file example