| 12345678910111213141516171819202122232425262728293031323334 | // Copyright 2020 The Gogs Authors. All rights reserved.// Use of this source code is governed by a MIT-style// license that can be found in the LICENSE file.package cryptoutilimport (	"crypto/rand"	"testing"	"github.com/stretchr/testify/assert")func TestAESGCM(t *testing.T) {	key := make([]byte, 16) // AES-128	_, err := rand.Read(key)	if err != nil {		t.Fatal(err)	}	plaintext := []byte("this will be encrypted")	encrypted, err := AESGCMEncrypt(key, plaintext)	if err != nil {		t.Fatal(err)	}	decrypted, err := AESGCMDecrypt(key, encrypted)	if err != nil {		t.Fatal(err)	}	assert.Equal(t, plaintext, decrypted)}
 |