mirror of
https://github.com/go-gitea/gitea
synced 2024-11-06 06:09:07 +01:00
f1173d6879
Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: Giteabot <teabot@gitea.io>
23 lines
454 B
Go
23 lines
454 B
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package secret
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestEncryptDecrypt(t *testing.T) {
|
|
var hex string
|
|
var str string
|
|
|
|
hex, _ = EncryptSecret("foo", "baz")
|
|
str, _ = DecryptSecret("foo", hex)
|
|
assert.Equal(t, "baz", str)
|
|
|
|
hex, _ = EncryptSecret("bar", "baz")
|
|
str, _ = DecryptSecret("foo", hex)
|
|
assert.NotEqual(t, "baz", str)
|
|
}
|