Part 1 of the ECMA-376 spec (see 18.3.1.85 sheetProtection) details the following three attributes to generate a password hash for sheet protection:
algorithmName
(defaults to SHA-1)
saltValue
Specifies the salt which was prepended to the user-supplied password before it was hashed using the hashing algorithm defined by the preceding attribute values to generate the hashValue attribute, and which shall also be prepended to the user-supplied password before attempting to generate a hash value for comparison.
spinCount
Specifies the number of times the hashing function shall be iteratively run (runs using each iteration's result plus a 4 byte value (0-based, little endian) containing the number of the iteration as the input for the next iteration) when attempting to compare a user- supplied password with the value stored in the hashValue attribute.
I expected something like this to work:
def hash_password(v)
require 'digest/sha1'
spin_count = 10
salt_value = Digest::SHA1.hexdigest(rand(36**8).to_s(36))
salty = salt_value + v
hash_value = nil
spin_count.times do |count|
hash_value = Digest::SHA1.hexdigest((hash_value ||= salty ) + Array(count).pack('V'))
end
hash_value
end
I'd be truly grateful if anyone can point out what I am doing wrong here.
EDIT: To give a bit more context:
This pseudo code is extracted from the axlsx gem for authoring xlsx spreadsheets. You can see the actual code from around line 155 here
We have been able to implement a much older version of the password hashing Based on the algorithm provided by Daniel Rentz of OpenOffice http://www.openoffice.org/sc/excelfileformat.pdf, Revision 1.42, page 115 (21.05.2012) However this is very different from what is listed in the spec.
If you fork the repo, you can run examples/sheet_protection.rb which creates a workbook with two sheets, one that uses the ECMA spec, the other using OpenOffice's version. If you click 'tools'->'protection'-> 'disable protection' (translating from Japanese here, the actual menu text may be different) and type in the password - it fails with the ECMA version.
Update: 2012.05.23
Looking a bit deeper, the fourth part of the spec (15.3.1.5, 15.3.1.6) indicates that there is an optional password attribute which conforms to the old style of sheet protection generation for 'transitional conformance classes'
password (Password) Specifies the hash of the password required for editing this chart sheet. The hash is generated using the logic defined in the revisionPassword attribute of the workbookProtection element (Part 1, ยง18.2.29)
which at least explains why the OpenOffice algorithm still works.