RESOLVED FIXED 125509
Use std::array when computing MD5 checksum
https://bugs.webkit.org/show_bug.cgi?id=125509
Summary Use std::array when computing MD5 checksum
Laszlo Vidacs
Reported 2013-12-10 06:49:22 PST
Use std::array instead of custom Vector implementation when calling MD5 checksum(); and use a constant for hash size instead of integer values defined at call sites.
Attachments
Patch (8.85 KB, patch)
2013-12-10 08:28 PST, Laszlo Vidacs
no flags
Patch (8.89 KB, patch)
2013-12-10 11:37 PST, Laszlo Vidacs
no flags
Laszlo Vidacs
Comment 1 2013-12-10 08:28:33 PST
Build Bot
Comment 2 2013-12-10 08:59:05 PST
Build Bot
Comment 3 2013-12-10 09:28:29 PST
Laszlo Vidacs
Comment 4 2013-12-10 11:37:55 PST
WebKit Commit Bot
Comment 5 2013-12-10 13:45:05 PST
Comment on attachment 218886 [details] Patch Clearing flags on attachment: 218886 Committed r160386: <http://trac.webkit.org/changeset/160386>
WebKit Commit Bot
Comment 6 2013-12-10 13:45:06 PST
All reviewed patches have been landed. Closing bug.
Darin Adler
Comment 7 2013-12-11 14:24:02 PST
Comment on attachment 218886 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=218886&action=review > Source/WebCore/platform/network/curl/CurlCacheEntry.cpp:213 > + for (size_t i = 0; i < MD5::hasSize; i++) This won}t compile because it says “hasSize” instead of “hashSize”.
Laszlo Vidacs
Comment 8 2013-12-11 14:31:34 PST
Thanks for the feedback, the typo fix is already landed in r160430 (https://bugs.webkit.org/show_bug.cgi?id=125571)
Note You need to log in before you can comment on or make changes to this bug.