mirror of
https://github.com/kevinveenbirkenbach/splitted-secret.git
synced 2024-11-01 09:03:11 +01:00
42 lines
1.5 KiB
Python
42 lines
1.5 KiB
Python
from .Cli import Cli
|
|
|
|
class AbstractSplittedSecret(Cli):
|
|
USER_PASSWORD_LENGTHS = 64
|
|
OVERALL_PASSWORD_LENGTHS = 128
|
|
|
|
# At the moment the programm can used deal with one digit numbers.
|
|
MAXIMUM_SECRET_HOLDERS = 9
|
|
MINIMUM_SECRET_HOLDERS = 2
|
|
|
|
def __init__(self):
|
|
super(Cli, self).__init__()
|
|
self.data_folder = "data/"
|
|
|
|
def getCoSecretHoldersRange():
|
|
return range(AbstractSplittedSecret.MINIMUM_SECRET_HOLDERS,AbstractSplittedSecret.MAXIMUM_SECRET_HOLDERS)
|
|
|
|
def getSecretHoldersRange():
|
|
return range(1,AbstractSplittedSecret.MAXIMUM_SECRET_HOLDERS)
|
|
|
|
def getFolderPath(self,folder_type):
|
|
return self.data_folder + folder_type + "/"
|
|
|
|
def getGroupFilesFolderPath(self,folder_type):
|
|
return self.getFolderPath(folder_type) + "group_files/"
|
|
|
|
def getUserFilesFolderPath(self,folder_type):
|
|
return self.getFolderPath(folder_type) + "user_files/"
|
|
|
|
def getFileExtension(self,file_type):
|
|
if file_type == "encrypted":
|
|
return '.gpg'
|
|
return ''
|
|
|
|
def getUserFilePath(self,user_id,file_type):
|
|
return self.getUserFilesFolderPath(file_type)+user_id+'.json' + self.getFileExtension(file_type);
|
|
|
|
def getGroupFilePath(self,group_id,file_type):
|
|
return self.getGroupFilesFolderPath(file_type) + str(group_id) + '.txt' + self.getFileExtension(file_type);
|
|
|
|
def getAccumulatedFilePath(self,file_type):
|
|
return self.getFolderPath(file_type) + 'accumulated.json' + self.getFileExtension(file_type); |