mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
* Encryption: De-duplicate encryption code with extensible service * Fix Wire injections * Fix tests * Register reload handler
21 lines
379 B
Go
21 lines
379 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)
|
|
}
|