Remove unused `hash_secret()` from `monkey_island/cc/environment/__init__.py`

This commit is contained in:
Shreya 2021-05-05 19:25:34 +05:30
parent edff2c5c08
commit c848581115
1 changed files with 0 additions and 7 deletions

View File

@ -1,4 +1,3 @@
import hashlib
import logging
import os
from abc import ABCMeta, abstractmethod
@ -106,12 +105,6 @@ class Environment(object, metaclass=ABCMeta):
def get_auth_expiration_time(self):
return self._AUTH_EXPIRATION_TIME
@staticmethod
def hash_secret(secret):
hash_obj = hashlib.sha3_512()
hash_obj.update(secret.encode("utf-8"))
return hash_obj.hexdigest()
def get_deployment(self) -> str:
deployment = "unknown"
if self._config and self._config.deployment: