mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-17 22:24:23 +01:00
7 lines
182 B
Python
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
|