mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-17 14:14:22 +01:00
Moves EncryptedBlob to common
This commit is contained in:
6
common/encrypted_blob.py
Normal file
6
common/encrypted_blob.py
Normal file
@@ -0,0 +1,6 @@
|
||||
class EncryptedBlob:
|
||||
def __init__(self, data):
|
||||
self.data = data
|
||||
|
||||
def __eq__(self, other):
|
||||
return isinstance(other, EncryptedBlob) and self.data == other.data
|
||||
Reference in New Issue
Block a user