6

I used the following command : keccak256('abc', 'pqr', 123); I get a value once I run this. How many bit value is this?

Rahul Sharma
  • 329
  • 1
  • 3
  • 10

1 Answers1

6

Keccak-256 in Solidity returns a 32 byte array (which could also be represented as a 256 bit string), as described in the Solidity Documentation.

bekah
  • 393
  • 2
  • 8