What does SHA256 hexadecimal string look like?

前端 未结 1 685
隐瞒了意图╮
隐瞒了意图╮ 2020-12-18 18:13

I have been looking all over google to find what the hex output of a SHA256 hash looks like. But I just can\'t seem to find it.

So what does a SHA256 hash look like

相关标签:
1条回答
  • 2020-12-18 18:44

    A SHA256 hash represented in hexadecimal consists of 64 hexadecimal characters, i.e. it matches the following regex:

    ^[A-Fa-f0-9]{64}$
    

    Example:

    7f83b1657ff1fc53b92dc18148a1d65dfc2d4b1fa3d677284affffd200126d9069
    
    0 讨论(0)
提交回复
热议问题