Hashed
Hashed describes data that has been processed by a hash function to produce a digest or hash value. A hash function maps input of arbitrary length to an output of fixed length. In general, hashing aims to be deterministic, so the same input yields the same hash. In cryptographic contexts, a hash should be fast to compute but hard to invert and hard to find collisions, though no hash is perfectly collision-free. There are two main categories: cryptographic hashes used for security (such as SHA-256, SHA-3, and BLAKE2) and non-cryptographic hashes used for data structures or checksums (such as MurmurHash or CityHash). The outputs are often called digests or hashes.
Hashed data are used to verify integrity; you compare hashes to detect tampering. They are also used
Important limitations: a hash does not reveal the original input; however, hash values can sometimes be reversed