Go Cheatsheet - AES Encryption w/ CBC mode
Encryption
AES Encryption w/ CBC mode
package main
import (
"bytes"
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"encoding/base64"
"fmt"
)
//lint:ignore U1000 might be used in the future
func pad(raw []byte) []byte {
paddi...
hn.0xbf.me1 min read