Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion lib/Crypto/Math/_IntegerBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,4 +409,3 @@ def _mult_modulo_bytes(term1, term2, modulus):
It is as long as the modulus would be, with zero padding
on the left if needed.
"""
pass
3 changes: 0 additions & 3 deletions lib/Crypto/Random/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,12 @@ def read(self, n):

def flush(self):
"""Method provided for backward compatibility only."""
pass

def reinit(self):
"""Method provided for backward compatibility only."""
pass

def close(self):
"""Method provided for backward compatibility only."""
pass


def new(*args, **kwargs):
Expand Down
1 change: 0 additions & 1 deletion lib/Crypto/Signature/pkcs1_15.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ def verify(self, msg_hash, signature):
#
if em1 not in possible_em1:
raise ValueError("Invalid signature")
pass


def _EMSA_PKCS1_V1_5_ENCODE(msg_hash, emLen, with_hash_parameters=True):
Expand Down
Loading