You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A couple of simple changes to main.c/lrzip.c will allow for compress/decompress via stdin/stdout when the password is provided on the command line. I have implemented this as:
main.c, line 715: if (unlikely((STDIN || STDOUT) && ENCRYPT && !control->passphrase))
lrzip, line 861: if (ENCRYPT && !control->passphrase)
The text was updated successfully, but these errors were encountered:
brentl99
changed the title
Suggestion to support encrypted Stdin/Stdout when password in on command line
Suggestion to support encrypted Stdin/Stdout when password provided on command line
Mar 20, 2024
A couple of simple changes to main.c/lrzip.c will allow for compress/decompress via stdin/stdout when the password is provided on the command line. I have implemented this as:
main.c, line 715: if (unlikely((STDIN || STDOUT) && ENCRYPT && !control->passphrase))
lrzip, line 861: if (ENCRYPT && !control->passphrase)
The text was updated successfully, but these errors were encountered: