Support for reading passwords from a specified fd#186
Open
Support for reading passwords from a specified fd#186
Conversation
Author
|
Fixed the extract command by wiring in the |
This initial work adds the -pfd[N] flag to the 7z command so that an
alternate file descriptor (fd) may be specified for reading the password
instead of standard input (stdin).
By adding this flag it becomes possible for 7z to accept data from stdin
for use with the -si flag while also being being able to decrypt a
password protected achieve without revealing the password on the
command line.
For example, generating a secret key and storing it in an encrypted archive
without the need to expose any of the data to a filesystem:
age-keygen | 7z -pfd9 9< <(pass show archive) -siid.age a archive.7z
As a side effect the password is not echoed to the terminal, however
this PR should not conflict with the work in ip7z#33.
22087bd to
bdd167d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This initial work adds the -pfd[N] flag to the 7z command so that an alternate file descriptor (fd) may be specified for reading the password instead of standard input (stdin).
By adding this flag it becomes possible for 7z to accept data from stdin for use with the -si flag while also being able to decrypt a password protected achieve without revealing the password on the command line.
For example, generating a secret key and storing it in an encrypted archive without the need to expose any of the data to a filesystem:
As a side effect the password is not echoed to the terminal, however this PR should not conflict with the work in #33.
Closes #184