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
-
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.age
I see that thedecrypted_secret.txt
has the default file mode bits-rw-r--r--
a.k.a.644
. Right now I need an additional step ofchmod 600 decrypted_secret.txt
to 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 theoreticalage
option--private
could avoid this by creating a private file right away.Beta Was this translation helpful? Give feedback.
All reactions