What is SHA1 fingerprint?

后端 未结 6 2581
心在旅途
心在旅途 2021-02-20 00:39

I am obtaining a Google Play API key from Google, and it is asking to enter SHA1 fingerprint. I want to know what is SHA1 fingerprint? I also wanted to know weather this API key

6条回答
  •  心在旅途
    2021-02-20 01:06

    It is a standard for the implementation of a 'secure hash algorithm' - a one-way cryptographic function that can be used to act as a 'signature' of a sequence of bytes. It is very unlikely that 2 different byte sequences would produce the same value (though not impossible)

    http://en.wikipedia.org/wiki/SHA-1

    Note that there are other, more robust standards out there these days e.g. SHA256 and beyond.

提交回复
热议问题