Files
python-teos/common/encrypted_blob.py
2020-02-13 16:32:51 +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