feat(QMCv2): Add mapCipher & mflac/mgg key discovery

This commit is contained in:
MengYX
2021-12-13 22:54:08 +08:00
parent 1552a667f6
commit 38648d57e6
17 changed files with 295 additions and 134 deletions

5
algo/qmc/cipher.go Normal file
View File

@ -0,0 +1,5 @@
package qmc
type streamCipher interface {
Decrypt(buf []byte, offset int)
}