Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var TranslateMap = map[string]Convertor{ "plaintext": &Plaintext{}, "replace": &Replace{}, }
Functions ¶
This section is empty.
Types ¶
type Convertor ¶
type Convertor interface {
Init()
// Encrypt 加密方法
Encrypt(st []byte) []byte
// Decrypt 解密方法
Decrypt(st []byte) []byte
// GenNewPW 生成新密码
GenNewPW(newPW []byte)
// GetPW 获取密码
GetPW() []byte
}
func GetNewConvertor ¶
Click to show internal directories.
Click to hide internal directories.