grafana/pkg/services/encryption/provider/cipher_aescfb_test.go
Serge Zaitsev bc2813ef06
Chore: Fix goimports grouping in pkg/services (#62420)
* fix goimports

* fix goimports order
2023-01-30 08:21:27 +00:00

20 lines
378 B
Go

package provider
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func Test_aesCfbCipher(t *testing.T) {
cipher := aesCfbCipher{}
ctx := context.Background()
encrypted, err := cipher.Encrypt(ctx, []byte("grafana"), "1234")
require.NoError(t, err)
assert.NotNil(t, encrypted)
assert.NotEmpty(t, encrypted)
}