You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
414 B
Go
21 lines
414 B
Go
2 years ago
|
package aes
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
"b612.me/starcrypto"
|
||
|
)
|
||
|
|
||
|
func Test_EncodeStr(t *testing.T) {
|
||
|
//fmt.Println(EncodeStr("我喜欢你", "sakurasaiteruyogugugug"))
|
||
|
}
|
||
|
|
||
|
func Test_DecodeStr(t *testing.T) {
|
||
|
//fmt.Println(DecodeStr("Z_8aILbog@Kjm$P", "sakurasaiteruyogugugug"))
|
||
|
}
|
||
|
|
||
|
func Test_Base91(t *testing.T) {
|
||
|
fmt.Println(starcrypto.Base91EncodeToString([]byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}))
|
||
|
}
|