Is it possible to encyript a video file with Laravel Help Functions ? Is it possible to encypty a video file (mp4, 150 mb) with Laravel Help Function ?
@rafetirmak Is there any particular reason for encrypting your video (large) file? If it is not a hard business rule, I prefer not to use it because it might affect the performance/memory issue!
Otherwise check more: https://laravel.com/docs/10.x/encryption
@tisuchi
Many thanks for your reply...
It is a suggested (not mandatory) medical standard for keeping patient self report data.
Is there any other way to keep secure larga video files with laravel ?
@rafetirmak A rough idea would be:
Is there any other way to keep secure large video files with laravel ?
Steps:
You store your file initially as a regular file (without encryption)
Once you store a file, dispatch a job that starts encryption processing .
Don't make this file available unless encryption processing is done (kind of like YouTube file upload, the updated file is not available even to the owner until the processing is done)
And more supporting process (if needed...)
@rafetirmak You store the video out of web folder (not a public accessible folder).
Same for secure files like images, documents, etc.
You only allow it through a script using proper authorization.
If not sure about this, hire a consultant to assist who is a highly skilled developer.
Edit:
Securing private files has been covered in past post. Of course still encrypt if needed.
@rafetirmak This completely depends on what you’re intending to do with the video file.
Please sign in or create an account to participate in this conversation.