Skip to content

Commit 5bfd59c

Browse files
authored
Add files via upload
1 parent 6f5492d commit 5bfd59c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pproxy/cipherpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def core(self):
150150
yield from data
151151
next_iv = 0 if next_iv >= (1<<(self.IV_LENGTH*8))-1 else next_iv+1
152152

153-
class OFBCipher(StreamCipher):
153+
class OFBCipher(CTRCipher):
154154
def core(self):
155155
data = self.iv
156156
while 1:

0 commit comments

Comments
 (0)