Hi,
there seems to be a typo/bug in ssl.py in the SSL2 class.
Unless I'm missing something, lines saying:
self.pad = self.data[1+n:1+n+pad]
self.data = self.data[1+n+pad:]
should really say:
self.pad = self.data[1+n:1+n+padlen]
self.data = self.data[1+n+padlen:]
HTH
Jirka
Original issue reported on code.google.com by jirka.ve...@gmail.com on 27 May 2008 at 12:37
Original issue reported on code.google.com by
jirka.ve...@gmail.com
on 27 May 2008 at 12:37