Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does SHA256 hexadecimal string look like?

Tags:

sha256

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?

like image 697
Simon Verbeke Avatar asked Jul 08 '11 20:07

Simon Verbeke


1 Answers

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
like image 157
dtb Avatar answered Nov 09 '22 01:11

dtb