<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<p>
<blockquote type="cite">
<pre>> tmp = rt.encrypt('Cycle{}'.format(pickle.dumps(objSave)))
Thanks to this hint </pre>
</blockquote>
This hint was *wrong*, it will introduce garbage into the string
and the "rotor" code is clearly designed to work with byte
strings, not unicode strings.<br>
<br>
Change it to <font color="#000000">
<pre>"tmp=rt.encrypt( b'Cycle'+pickle.dumps(objSave) )"
</pre>
</font></p>
</body>
</html>