(password)
| 19 | |
| 20 | @staticmethod |
| 21 | def createPasswordHash(password): |
| 22 | if password is not None: |
| 23 | return hashlib.sha512(password + boxrouterManager().boxId).hexdigest() |
| 24 | return None |
| 25 | |
| 26 | def getLoggedUser(self): |
| 27 | loggedUser = settings().get(['cloudSlicer', 'loggedUser']) |
no test coverage detected