FoxiGram/TMessagesProj/jni/voip/webrtc/base/third_party/cityhash/README.chromium
instant992 8e79f2ee9c FoxiGram: Telegram client with built-in Xray VLESS proxy
Based on Nekogram. Key additions:
- Rebrand to FoxiGram (app name, APK name, applicationId com.foxigram.app)
- Embedded Xray (VLESS+Reality) proxy client via JNI libxray.so
- Bundled hidden one-tap proxies (LTE + WiFi), read-only in UI
- Auto-restore proxy on restart, rebind to active network (LTE/WiFi)
- Server credentials externalized to git-ignored XrayServers.java (+ template)
- libxray Go source included; compiled .so, keystore, google-services.json ignored
2026-06-08 16:41:07 +04:00

24 lines
734 B
Text

Name: CityHash
URL: https://github.com/google/cityhash
Version: 1.1.1
Revision: 8af9b8c
License: MIT
License File: COPYING
Security Critical: yes
Description:
This is a fast non-cryptographic hash function.
There are currently two distinct sets of CityHash functions:
v1.0.3 and v1.1+ that produce distinct outputs.
The version in //third_party/smhasher is 1.0.3 and has some hash
quality issues that led to non-backwards compatible changes in v1.1+.
Local changes:
- guarded function declaration (i.e. CityHash64) within a namespace
(base::internal::cityhash_v111).
- defined bswap_32/bswap_64 to use compiler builtins to make 'native_client'
build pass.
- remove unneeded CRC32 stuff.
- formating to make 'git cl format' happy.