Encryption: De-duplicate encryption code with extensible service (#52472)

* Encryption: De-duplicate encryption code with extensible service

* Fix Wire injections

* Fix tests

* Register reload handler
This commit is contained in:
Joan López de la Franca Beltran
2022-08-02 15:08:09 +02:00
committed by GitHub
parent 9c6aab3bc9
commit 28e27e1365
41 changed files with 809 additions and 367 deletions

View File

@@ -0,0 +1,20 @@
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)
}