forked from p15670423/monkey
Island: Wrap missed encryption key with EncryptionKey32Bytes in DataStoreEncryptor
This commit is contained in:
parent
6d6b7e8cba
commit
37b8db6a6c
|
@ -32,7 +32,7 @@ class DataStoreEncryptor(IEncryptor):
|
||||||
with open(self._key_file, "rb") as f:
|
with open(self._key_file, "rb") as f:
|
||||||
encrypted_key = f.read()
|
encrypted_key = f.read()
|
||||||
|
|
||||||
plaintext_key = self._password_based_encryptor.decrypt(encrypted_key)
|
plaintext_key = EncryptionKey32Bytes(self._password_based_encryptor.decrypt(encrypted_key))
|
||||||
return KeyBasedEncryptor(plaintext_key)
|
return KeyBasedEncryptor(plaintext_key)
|
||||||
|
|
||||||
def _create_key(self) -> KeyBasedEncryptor:
|
def _create_key(self) -> KeyBasedEncryptor:
|
||||||
|
|
Loading…
Reference in New Issue