├── README.md ├── crypto ├── aes.c ├── aes.h ├── pbkdf2_hmac.c ├── pbkdf2_hmac.h ├── sha.c └── sha.h ├── decrypt_wxdb.sln ├── decrypt_wxdb.vcxproj ├── decrypt_wxdb.vcxproj.filters ├── decrypt_wxdb.vcxproj.user └── main.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhimian/decrypt-PC-WeChat-db/HEAD/README.md -------------------------------------------------------------------------------- /crypto/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhimian/decrypt-PC-WeChat-db/HEAD/crypto/aes.c -------------------------------------------------------------------------------- /crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhimian/decrypt-PC-WeChat-db/HEAD/crypto/aes.h -------------------------------------------------------------------------------- /crypto/pbkdf2_hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhimian/decrypt-PC-WeChat-db/HEAD/crypto/pbkdf2_hmac.c -------------------------------------------------------------------------------- /crypto/pbkdf2_hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhimian/decrypt-PC-WeChat-db/HEAD/crypto/pbkdf2_hmac.h -------------------------------------------------------------------------------- /crypto/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhimian/decrypt-PC-WeChat-db/HEAD/crypto/sha.c -------------------------------------------------------------------------------- /crypto/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhimian/decrypt-PC-WeChat-db/HEAD/crypto/sha.h -------------------------------------------------------------------------------- /decrypt_wxdb.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhimian/decrypt-PC-WeChat-db/HEAD/decrypt_wxdb.sln -------------------------------------------------------------------------------- /decrypt_wxdb.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhimian/decrypt-PC-WeChat-db/HEAD/decrypt_wxdb.vcxproj -------------------------------------------------------------------------------- /decrypt_wxdb.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhimian/decrypt-PC-WeChat-db/HEAD/decrypt_wxdb.vcxproj.filters -------------------------------------------------------------------------------- /decrypt_wxdb.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhimian/decrypt-PC-WeChat-db/HEAD/decrypt_wxdb.vcxproj.user -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhimian/decrypt-PC-WeChat-db/HEAD/main.c --------------------------------------------------------------------------------