summaryrefslogtreecommitdiffstats
path: root/lib/Spreadsheet/ParseXLSX/Decryptor/Standard.pm
diff options
context:
space:
mode:
authorAlexey Mazurin <mazurin.alexey@gmail.com>2015-12-29 16:42:10 +0400
committerAlexey Mazurin <mazurin.alexey@gmail.com>2015-12-29 16:42:10 +0400
commit81054c945a6ebf7a7d9d55a9393c76e3951b6766 (patch)
tree5897f4cea21dd5e7fa6c410ba1789b637433c478 /lib/Spreadsheet/ParseXLSX/Decryptor/Standard.pm
parent168bcad6db3dd76440f0390aeecd3cdd09839d3b (diff)
downloadspreadsheet-parsexlsx-81054c945a6ebf7a7d9d55a9393c76e3951b6766.tar.gz
spreadsheet-parsexlsx-81054c945a6ebf7a7d9d55a9393c76e3951b6766.zip
missed pack("L", ...) in Agile.pm and Standard.pm
Diffstat (limited to 'lib/Spreadsheet/ParseXLSX/Decryptor/Standard.pm')
-rw-r--r--lib/Spreadsheet/ParseXLSX/Decryptor/Standard.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Spreadsheet/ParseXLSX/Decryptor/Standard.pm b/lib/Spreadsheet/ParseXLSX/Decryptor/Standard.pm
index 9c1c381..e5c569d 100644
--- a/lib/Spreadsheet/ParseXLSX/Decryptor/Standard.pm
+++ b/lib/Spreadsheet/ParseXLSX/Decryptor/Standard.pm
@@ -47,7 +47,7 @@ sub _generateDecryptionKey {
unless ($self->{pregeneratedKey}) {
$hash = $self->{hashProc}->($self->{salt} . Encode::encode('UTF-16LE', $self->{password}));
for (my $i = 0; $i < $self->{spinCount}; $i++) {
- $hash = $self->{hashProc}->(pack('L', $i) . $hash);
+ $hash = $self->{hashProc}->(pack('V', $i) . $hash);
}
$self->{pregeneratedKey} = $hash;
}