(string, sudoku_key, boot_strap)
| 465 | # plain_chars |
| 466 | # - characters that you do not want to encrypt |
| 467 | def decrypt_str(string, sudoku_key, boot_strap): |
| 468 | byte_obj = string.encode(CODEC, 'ignore') |
| 469 | plaintext = decrypt(byte_obj, sudoku_key, boot_strap)[0] |
| 470 | # return encrypted string, key, and original bootstrap |
| 471 | return plaintext.decode(CODEC, 'ignore') |
| 472 | |
| 473 | ################################################################################ |
| 474 |
no test coverage detected