Manhuadui - update decryption key (#3813)

This commit is contained in:
Mike 2020-07-16 18:23:27 -04:00 committed by GitHub
parent a3fdd8a464
commit a84848d790
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Manhuadui' extName = 'Manhuadui'
pkgNameSuffix = 'zh.manhuadui' pkgNameSuffix = 'zh.manhuadui'
extClass = '.Manhuadui' extClass = '.Manhuadui'
extVersionCode = 7 extVersionCode = 8
libVersion = '1.2' libVersion = '1.2'
} }

View File

@ -135,7 +135,7 @@ class Manhuadui : ParsedHttpSource() {
} }
private fun decrypt(code: String): String? { private fun decrypt(code: String): String? {
val key = "123456781234567G" val key = "1231994MHB123456"
val iv = "ABCDEF1G34123412" val iv = "ABCDEF1G34123412"
return decryptAES(code, key, iv) return decryptAES(code, key, iv)