* add: device login * update: global config * add: User transmission interface encryption * update: get global config * update: User transmission interface encryption * add: get device list * add: SecretIsEmpty Message * update: device middleware * add: query user subscribe node list * fix bug: query device list * fix bug: unbind device * update: device login * fix bug: The ad table is missing the description field * fix bug:page size is zero * update: Device Middleware * fix bug: Site custom data update failed
16 lines
359 B
Go
16 lines
359 B
Go
package tool
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestEncodePassWord(t *testing.T) {
|
|
t.Logf("EncodePassWord: %v", EncodePassWord("password"))
|
|
}
|
|
|
|
func TestMultiPasswordVerify(t *testing.T) {
|
|
pwd := "$2y$10$WFO17pdtohfeBILjEChoGeVxpDG.u9kVCKhjDAeEeNmCjIlj3tDRy"
|
|
status := MultiPasswordVerify("bcrypt", "", "admin1", pwd)
|
|
t.Logf("MultiPasswordVerify: %v", status)
|
|
}
|