Feature: #107441 - Allow more hashing algorithms in FAL
See forge#107441
Description
Previously, FAL's
Local only supported md5
and sha1 as hashing algorithms. While this may be sufficient for many use
cases, it might be necessary to use different hashing algorithms depending on
the specific scenario.
The method
Local is now able to use any hashing algorithm
that is registered in PHP itself by building a
Hash object and
updating it by streaming the file content.
Impact
FAL's
Local can now make use of different hashing algorithms, e.g.
crc32, sha256 and many more.