Hashing is useful because it allows us to compare if two inputs are the same, without ever knowing the content of the original inputs.

How might this be possible?

By comparing if the hashed outputs are the sameBy reversing the hash function

Terrific! The same input will always generate the same output. Useful for checking passwords, while still maintaining privacy.

Is it wise to invest your time in this approach first?