Hello, i have looked at your example of how to generate multichain address and private key
http://www.multichain.com/developers/address-key-format/
Based on your example on generating a private address, step 2 to step 3
- Start with a raw private ECDSA key:
283D01856115B7970B622EAA6DAFF2B9ECE30F1B66927592F6EA70325929102B - Take the corresponding public key generated with it, which can be in compressed or uncompressed format. The uncompressed version contains 65 bytes, consisting of 0x04, 32 bytes for the X coordinate and 32 bytes for the Y coordinate. The compressed version contains 33 bytes, consisting of 0x02 (Y is even) or 0x03 (Y is odd), followed by 32 bytes for the X coordinate. Below is a compressed example:
0284E5235E299AF81EBE1653AC5F06B60E13A3A81F918018CBD10CE695095B3E24 - Calculate the SHA-256 hash of the public key:
1C72D90868DBCD0252A54EFFB25FB535B4C89B67D57B75FD88465C5F173DCAB5
when i try to take 0284E5235E299AF81EBE1653AC5F06B60E13A3A81F918018CBD10CE695095B3E24 to hash on any online SHA-256 hash calculator, they gave me different answer from the one stated in step 3. Why is that so?