mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-31 02:27:10 -04:00 
			
		
		
		
	src/paperless/db.py: If encryption is disabled, just directly read the file contents
This commit is contained in:
		
							parent
							
								
									8783c2af88
								
							
						
					
					
						commit
						3b6a3219f5
					
				| @ -12,11 +12,15 @@ class GnuPG(object): | ||||
| 
 | ||||
|     @classmethod | ||||
|     def decrypted(cls, file_handle): | ||||
|         if(not settings.ENABLE_ENCRYPTION): | ||||
|             return file_handle.read() | ||||
|         return cls.gpg.decrypt_file( | ||||
|             file_handle, passphrase=settings.PASSPHRASE).data | ||||
| 
 | ||||
|     @classmethod | ||||
|     def encrypted(cls, file_handle): | ||||
|         if(not settings.ENABLE_ENCRYPTION): | ||||
|             return file_handle.read() | ||||
|         return cls.gpg.encrypt_file( | ||||
|             file_handle, | ||||
|             recipients=None, | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user