diff options
author | Nicolas Vigier <boklm@mageia.org> | 2011-02-03 18:31:48 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2011-02-03 18:31:48 +0000 |
commit | 3331de3df3e2c08bba6843b1f17e71bc40d62a5a (patch) | |
tree | e9858f15c608635b8420986e1e73b3901ee78df1 /random-passphrase | |
parent | ce1216f38d11897f58608c6ddaec2b346f8ca148 (diff) | |
download | gpg-3331de3df3e2c08bba6843b1f17e71bc40d62a5a.tar gpg-3331de3df3e2c08bba6843b1f17e71bc40d62a5a.tar.gz gpg-3331de3df3e2c08bba6843b1f17e71bc40d62a5a.tar.bz2 gpg-3331de3df3e2c08bba6843b1f17e71bc40d62a5a.tar.xz gpg-3331de3df3e2c08bba6843b1f17e71bc40d62a5a.zip |
don't filter \n and \r as we're now saving passphrase in hex
Diffstat (limited to 'random-passphrase')
-rwxr-xr-x | random-passphrase | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/random-passphrase b/random-passphrase index 777f10c..0bb2f02 100755 --- a/random-passphrase +++ b/random-passphrase @@ -10,10 +10,8 @@ while ($size) { my $o; print STDERR "$size random bytes to read.\n"; read $rf, $o, 1; - if ($o ne "\n" && $o ne "\r") { - print unpack("H*", $o); - $size--; - } + print unpack("H*", $o); + $size--; } close($rf); |