mirror of
				https://github.com/kevinveenbirkenbach/splitted-secret.git
				synced 2025-11-04 11:18:03 +00:00 
			
		
		
		
	Compare commits
	
		
			3 Commits
		
	
	
		
			42a5b93d67
			...
			07ba9b2164
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 07ba9b2164 | |||
| 63f2d9fd18 | |||
| cc943c8c12 | 
@@ -70,8 +70,4 @@ To encrypt the master-password file and to create the neccessary encrypted meta
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
```bash 
 | 
					```bash 
 | 
				
			||||||
python scripts/main.py --secret-holders-amount "<<amount>>" --quota "<<quota>>" --mode encrypt --add-user-information --master-password "<<master_password>>" --create-meta-data
 | 
					python scripts/main.py --secret-holders-amount "<<amount>>" --quota "<<quota>>" --mode encrypt --add-user-information --master-password "<<master_password>>" --create-meta-data
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					 | 
				
			||||||
## todo 
 | 
					 | 
				
			||||||
- add data-input attribut
 | 
					 | 
				
			||||||
- add data-output attribut
 | 
					 | 
				
			||||||
							
								
								
									
										1
									
								
								data/encrypted/user_files/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								data/encrypted/user_files/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					*.json.pgp
 | 
				
			||||||
@@ -120,16 +120,33 @@ class Encryption():
 | 
				
			|||||||
            data=self.user_mapped_data[user_id]
 | 
					            data=self.user_mapped_data[user_id]
 | 
				
			||||||
            password=self.user_mapped_data[user_id]['user_password']
 | 
					            password=self.user_mapped_data[user_id]['user_password']
 | 
				
			||||||
            self.encryptToJsonFile(data,file_path,password)
 | 
					            self.encryptToJsonFile(data,file_path,password)
 | 
				
			||||||
            
 | 
					    '''
 | 
				
			||||||
    def encryptAccumulatedFile(self):
 | 
					    This saving as decrypted file is necessary due to the reason that the shell can't deal with unlimited string length.
 | 
				
			||||||
        file_path=self.paths.getAccumulatedFilePath(Paths.TYPE_ENCRYPTED)
 | 
					    See: https://stackoverflow.com/questions/30650841/why-am-i-getting-errno-7-argument-list-too-long-and-oserror-errno-24-too-ma
 | 
				
			||||||
 | 
					    '''
 | 
				
			||||||
 | 
					    def encryptFileToFile(self,input_file,output_file,password):
 | 
				
			||||||
 | 
					        self.cli.executeCommand('cat \'' + input_file + '\' | gpg --symmetric --armor --batch --passphrase "' + password + '" -o "' + output_file + '"')
 | 
				
			||||||
 | 
					    
 | 
				
			||||||
 | 
					    def deleteDecryptedAccumulatedFile(self):
 | 
				
			||||||
 | 
					        self.cli.executeCommand('rm ' + self.paths.getAccumulatedFilePath(Paths.TYPE_DECRYPTED))
 | 
				
			||||||
 | 
					    
 | 
				
			||||||
 | 
					    def saveDecryptedAccumulatedFile(self):
 | 
				
			||||||
 | 
					        file_path=self.paths.getAccumulatedFilePath(Paths.TYPE_DECRYPTED)
 | 
				
			||||||
        data={"user_mapped": self.user_mapped_data, "group_mapped": self.group_mapped_data}
 | 
					        data={"user_mapped": self.user_mapped_data, "group_mapped": self.group_mapped_data}
 | 
				
			||||||
        self.encryptToJsonFile(data,file_path,self.master_password)
 | 
					        with open(file_path, 'w') as file:
 | 
				
			||||||
 | 
					            json.dump(data, file)
 | 
				
			||||||
 | 
					        
 | 
				
			||||||
 | 
					    def encryptAccumulatedFile(self):
 | 
				
			||||||
 | 
					        self.saveDecryptedAccumulatedFile()
 | 
				
			||||||
 | 
					        encrypted_file_path=self.paths.getAccumulatedFilePath(Paths.TYPE_ENCRYPTED)
 | 
				
			||||||
 | 
					        decrypted_file_path=self.paths.getAccumulatedFilePath(Paths.TYPE_DECRYPTED)
 | 
				
			||||||
 | 
					        self.encryptFileToFile(decrypted_file_path,encrypted_file_path,self.master_password)
 | 
				
			||||||
 | 
					        self.deleteDecryptedAccumulatedFile()
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    def encryptMainData(self,input_directory):
 | 
					    def encryptMainData(self,input_directory):
 | 
				
			||||||
        self.cli.executeCommand('tar -C"' + input_directory + '" -cvzf - ./ | gpg -c --batch --passphrase "' + self.master_password +'" > "' + self.paths.getEncryptedMainDataFile() + '"')
 | 
					        self.cli.executeCommand('tar -C"' + input_directory + '" -cvzf - ./ | gpg -c --batch --passphrase "' + self.master_password +'" > "' + self.paths.getEncryptedMainDataFile() + '"')
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
    def encryptMetaData(self):
 | 
					    def encryptMetaData(self):
 | 
				
			||||||
        self.encryptUserFile()
 | 
					        self.encryptUserFile()
 | 
				
			||||||
        self.encryptAccumulatedFile()
 | 
					        self.encryptGroupFiles()
 | 
				
			||||||
        self.encryptGroupFiles()
 | 
					        self.encryptAccumulatedFile()
 | 
				
			||||||
		Reference in New Issue
	
	Block a user