You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
jirka.ve...@gmail.com
on 27 May 2008 at 12:37The text was updated successfully, but these errors were encountered: