Is SHA-256 Case Insensitive?

后端 未结 4 487
予麋鹿
予麋鹿 2021-01-17 10:21

I\'m running a service that is using SHA-256 on two sides of the application - one is a server-side PHP implementation and the other is a client-side iOS implementation. The

4条回答
  •  旧巷少年郎
    2021-01-17 10:52

    If you are referring to a hexadecimal string output, then yes, that is case insensitive. It is a textual representation of binary data.

    http://en.wikipedia.org/wiki/Hexadecimal

    The algorithm itself is most definitely case-sensitive.

提交回复
热议问题