What does SHA256 hexadecimal string look like?

时光总嘲笑我的痴心妄想 提交于 2019-12-19 05:06:54

问题


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 when it's converted to hexadecimal?


回答1:


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

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

Example:

7f83b1657ff1fc53b92dc18148a1d65dfc2d4b1fa3d677284addd200126d9069


来源:https://stackoverflow.com/questions/6630168/what-does-sha256-hexadecimal-string-look-like

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!