# OpenSSL の AES の GCM モードで作った暗号を go で復号する # はじめに クライアント側で暗号化したデータを gin で復号しようとしてちょっと詰まったのでメモを残しておきます こちら (opens new window) に encription と decription のサンプルがあるのですが block, err := aes.NewCipher(key) if err != nil { panic(err.Error()) } aesgcm, err := cipher.NewGCM(block) if err != nil { panic(err.Error()) } plaintext, err := aesgcm.Open(nil, nonce, ciphertext, nil) if err != nil { panic(err.Error())