MCPcopy
hub / github.com/wechatpy/wechatpy / decrypt

Method decrypt

wechatpy/crypto/cryptography.py:16–18  ·  view source on GitHub ↗
(self, ciphertext)

Source from the content-addressed store, hash-verified

14 return encryptor.update(plaintext) + encryptor.finalize()
15
16 def decrypt(self, ciphertext):
17 decryptor = self.cipher.decryptor()
18 return decryptor.update(ciphertext) + decryptor.finalize()
19
20
21class WeChatCipher(BaseWeChatCipher):

Callers

nothing calls this directly

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected