コード例 #1
0
 def _reversePlainTextPreprocessing(self, preprocessedPlainText, key):
     """Reverses the process of _preprocessPlainText(plainText, key) by
     returning a string from the given bytes preprocessedPlainText."""
     emd, c, aes, leng, root = key
     out = Tools.reverse_preprocess(preprocessedPlainText, emd, c, aes, leng, root)
     return out