From b5682c730391b82b03852c2a7d615689a2710774 Mon Sep 17 00:00:00 2001 From: panki27 Date: Mon, 9 Apr 2018 11:04:46 +0200 Subject: [PATCH] working on resolving 0-width strings --- crypttool.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) mode change 100644 => 100755 crypttool.py diff --git a/crypttool.py b/crypttool.py old mode 100644 new mode 100755 index ea0cd0a..c9d7998 --- a/crypttool.py +++ b/crypttool.py @@ -157,16 +157,18 @@ def resolveZeroWidthString(inputstring): charfound = False binarystring = '' resultstring = '' - inputstring = inputstring.decode('unicode-escape') + #inputstring = inputstring.decode('unicode-escape') + inputstring = inputstring.decode('utf-8') for char in inputstring: - print char if char == u'\u200b': binarystring += '1' elif char == u'\u200d': binarystring += '0' - for byte in binarystring[::8]: - resultstring += translate(byte, 1, 5) - print resultstring + print('Binary:') + print binarystring + #for byte in binarystring[::8]: + # resultstring += translate(byte, 1, 5) + #print resultstring def vignere(plain, key): i = 0