mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-14 11:37:29 +08:00
26 lines
425 B
Go
26 lines
425 B
Go
package encrypt
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/1Panel-dev/1Panel/backend/init/viper"
|
|
)
|
|
|
|
func TestStringEncrypt(t *testing.T) {
|
|
viper.Init()
|
|
p, err := StringEncrypt("1Panel@2022")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
fmt.Println(p)
|
|
}
|
|
|
|
func TestStringDecrypt(t *testing.T) {
|
|
viper.Init()
|
|
p, err := StringDecrypt("dXn5bVtea+KVLDrLJlpnPIJNfW8TAMmqX1QNMdSGp88=")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
fmt.Println(p)
|
|
}
|