Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
metamorphic-spyware committed Nov 6, 2021
1 parent d020502 commit e652d56
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions enrocrypt/hashing.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,6 @@ def SHA244(self,data:str):
hash = str(sha.digest())
return self.__Salt(hash,salt=self.salt)

def MD5(self,data:str):
sha = hashlib.md5(bytes(data.encode()))
hash = str(sha.digest())
return self.__Salt(hash,salt=self.salt)

def SHA384(self,data:str):
sha = hashlib.sha384(bytes(data.encode()))
hash = str(sha.digest())
Expand Down

0 comments on commit e652d56

Please sign in to comment.