AES Encryption/Decryption in Golang
The Advanced Encryption Standard (AES) aka Rijndael is an encryption algorithm created in 2001 by NIST. It uses 128-bit blocks of data to encrypt and is a symmetric block cipher. In this post, we are going to encrypt and decrypt data using AES in Go. Required imports We will need the crypto/aes package for it […]
AES Encryption/Decryption in Golang Read More »