Create private files #402
fleetingbytes
started this conversation in
UX reports
Replies: 1 comment 1 reply
-
|
This sounds like it is not a problem of |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I wish to decrypt a file such that the output file is private right away.
Currently after
age -o decrypted_secret.txt -i identity.key -d secret.ageI see that thedecrypted_secret.txthas the default file mode bits-rw-r--r--a.k.a.644. Right now I need an additional step ofchmod 600 decrypted_secret.txtto make the decrypted file private. This creates a small time window within which other users could read the contents of the decrypted file before I set it to private. A theoreticalageoption--privatecould avoid this by creating a private file right away.Beta Was this translation helpful? Give feedback.
All reactions