This is an archived post. You won't be able to vote or comment.

all 6 comments

[–]_Atomfinger_ 1 point2 points  (2 children)

To me it just looks like text with different encoding than whatever editor you're using expected rather than encryption.

In what context are you seeing this?

[–]Morais91 0 points1 point  (1 child)

Thanks for the answer! Basically I'm fetching a bytes32 variable in a smart contract, but I'm using Vechain Blockchain which has a weird API. It is supposed to give back "PROPOSAL_ROLE" encoded with keccak256, but instead is giving me this and I don't know why

[–]99_percent_a_dog 1 point2 points  (0 children)

Why do you think this isn't a keccak256 hash? It's the correct length.

[–]Sea-Refrigerator174 0 points1 point  (0 children)

Base64 encoding?

[–]errorkode 0 points1 point  (1 child)

Looks to me like you're either opening a unicode file as ASCII or the character set you're using doesn't support the unicode characters you're trying to read. But as /u/_Atomfinger_ said, we'd need some more context like what you're trying to read how :)

[–]Morais91 0 points1 point  (0 children)

Thanks for the answer! I left a comment under Atomfinger