Extract text message from string using built key and primer.
(self, string)
| 250 | return cipher |
| 251 | |
| 252 | def extract_text(self, string): |
| 253 | "Extract text message from string using built key and primer." |
| 254 | text, primer = me.decrypt_str(string, self.key, self.primer) |
| 255 | return text |
| 256 | |
| 257 | ######################################################################## |
| 258 |