diff options
author | Eike Rathke <erack@redhat.com> | 2018-02-26 13:34:16 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2018-02-26 13:34:24 +0100 |
commit | 238c6a45e02c8a0a3f462ab493c5d58b3d8f075f (patch) | |
tree | bce5e4d81460a9af92af7b38b18386cb61cd2a14 /include | |
parent | 21b593e45587a196e294eb628546d6141a6959d8 (diff) |
Remove LittleEndian constraint, will handle that in calculateHash()
Change-Id: I2534f3fa75484a2bb5f0c3d4bee3fca4f843095f
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/docpasswordhelper.hxx | 4 | ||||
-rw-r--r-- | include/comphelper/hash.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/comphelper/docpasswordhelper.hxx b/include/comphelper/docpasswordhelper.hxx index 0755106b1d23..30243c347884 100644 --- a/include/comphelper/docpasswordhelper.hxx +++ b/include/comphelper/docpasswordhelper.hxx @@ -185,7 +185,7 @@ public: OOXML sheetProtection and fileSharing elements. @param rPassword - UTF-16LE encoded string without leading BOM character + UTF-16 encoded string without leading BOM character @param rSaltValue Base64 encoded salt that will be decoded and prepended to password @@ -225,7 +225,7 @@ public: OOXML sheetProtection and fileSharing elements. @param rPassword - UTF-16LE encoded string without leading BOM character + UTF-16 encoded string without leading BOM character @param rSaltValue Base64 encoded salt that will be decoded and prepended to password diff --git a/include/comphelper/hash.hxx b/include/comphelper/hash.hxx index 9ef2cbd58465..08ae5fd119a8 100644 --- a/include/comphelper/hash.hxx +++ b/include/comphelper/hash.hxx @@ -81,7 +81,7 @@ public: /** Convenience function to calculate a salted hash with iterations. @param rPassword - UTF-16LE encoded string, hashed byte-wise as unsigned char. + UTF-16 encoded string, hashed byte-wise as unsigned char. @param rSaltValue Salt that will be prepended to password data. |