Verify your download

So no one can slip you a tampered app, you can check two things: that it's signed by us (the real guarantee) and that the file is exactly the one we published.

1. Signature fingerprint (the real guarantee)

All our APKs are signed with the same key. Android requires that signature on install and rejects any update with a different signature: that's why a tampered app CANNOT be installed over yours. This is the fingerprint (SHA-256) of our signing certificate; it's the same across all versions:

7379394507e8311c3a1d73bfc0e737c46032bc97e829eee9fa179dab63bf0246

Check it with: apksigner verify --print-certs looklock.chat.v0.08.apk (it will give a "certificate SHA-256 digest": it must match the one above).

2. File SHA-256

Additionally, this is the SHA-256 hash of each build. It confirms the downloaded file is identical to what we published, without a single changed byte.

looklockchat-v3.0.142.apk (latest):

d9997e49a1358080ae1bacc23631bd7a489bde8a5bb362cd8c382a2461cbb1a8

How to check it

  • Windows: certutil -hashfile looklock.chat.v0.08.apk SHA256
  • Linux / Mac: sha256sum looklock.chat.v0.08.apk
  • Android: a hashing app (e.g. "Hash Droid") on the downloaded APK.

The value you get must match, character by character, the one on this page.

Hashes of all versions

VersionSHA-256
looklockchat-v3.0.142.apkd9997e49a1358080ae1bacc23631bd7a489bde8a5bb362cd8c382a2461cbb1a8
looklockchat-v3.0.141.apkd146ad246934a84b068156bb6815c942a2cfb54a6132431bdf941a1f7f98ea9e
looklockchat-v3.0.140.apk7d478f2353359efd007c6540c31cb381164c3357c8bbe61ff35066153ff623a9
looklockchat-v3.0.139.apkb81207ee5277bd3bc52e55e7ddd88bea7c7b623e2de9fa6f5644c8dc11d801f9
looklockchat-v3.0.138.apkda1e88ddcb2a1e33248bf72a438fa75aef4af82ad31a8cd2029d953a42cb2129
looklockchat-v3.0.137.apkc4d05b4908d7d5b4db48833c8a8a7b41ad917f168bc5533405215ef57a9bf84a
looklockchat-v3.0.131.apk3eeedbbaa1b40249d0646e6a4c5b33dd7d8a340e3eef5912cb2f65ba8a121a8c
looklockchat-v3.0.128.apkff8f01c3558c68e639ce3ca18aed5efb5e72a7afac906da1130c7dcf61e46201
looklockchat-v3.0.123.apk7080d2f5bf4bce41f846140e4a1bbef96ba7fc20222cfb3dbbc6e352d6eb8567
looklockchat-v3.0.122.apkf83b990c5ea9b291c1eef403b527bf0fc17ba023a8d4fe87c88580d2c4658f0f

View the manifest (checksums.json)

Honest note: this hash is published on our server. If someone fully compromised the server, they could change the APK and its hash at the same time. That's why the strongest guarantee is the SIGNATURE (our key is offline): that fingerprint can't be forged by anyone without the key, and Android always checks it.

Download the App