mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-07 20:31:41 +00:00
18 lines
446 B
Go
18 lines
446 B
Go
package protocol
|
|
|
|
import "github.com/Dreamacro/clash/transport/ssr/tools"
|
|
|
|
func init() {
|
|
register("auth_aes128_md5", newAuthAES128MD5, 9)
|
|
}
|
|
|
|
func newAuthAES128MD5(b *Base) Protocol {
|
|
a := &authAES128{
|
|
Base: b,
|
|
authData: &authData{},
|
|
authAES128Function: &authAES128Function{salt: "auth_aes128_md5", hmac: tools.HmacMD5, hashDigest: tools.MD5Sum},
|
|
userData: &userData{},
|
|
}
|
|
a.initUserData()
|
|
return a
|
|
}
|