1Name: CityHash 2URL: https://github.com/google/cityhash 3Version: 1.1.1 4Revision: 8af9b8c 5License: MIT 6License File: COPYING 7Security Critical: yes 8Shipped: yes 9 10Description: 11This is a fast non-cryptographic hash function. 12 13There are currently two distinct sets of CityHash functions: 14v1.0.3 and v1.1+ that produce distinct outputs. 15 16The version in //base/third_party/cityhash_v103 is 1.0.3 and has some hash 17quality issues that led to non-backwards compatible changes in v1.1+. See 18//base/hash/README.md for instructions on how to choose a hash function. 19 20Local changes: 21- guarded function declaration (i.e. CityHash64) within a namespace 22(base::internal::cityhash_v111). 23- defined bswap_32/bswap_64 to use compiler builtins to make 'native_client' 24build pass. 25- remove unneeded CRC32 stuff. 26- formating to make 'git cl format' happy. 27- Use the builtins for bswap when compiling with clang. 28- https://github.com/google/cityhash/pull/36