mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	src/paperless/db.py: If encryption is disabled, just directly read the file contents
This commit is contained in:
		 Mike Cronce
					Mike Cronce
				
			
				
					committed by
					
						 Daniel Quinn
						Daniel Quinn
					
				
			
			
				
	
			
			
			 Daniel Quinn
						Daniel Quinn
					
				
			
						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, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user