Files
python-teos/pisa/encrypted_blob.py
2019-12-04 17:46:07 +01:00

7 lines
182 B
Python

class EncryptedBlob:
def __init__(self, data):
self.data = data
def __eq__(self, other):
return isinstance(other, EncryptedBlob) and self.data == other.data