Description Usage Arguments Value Note References Examples
Get information about a hash
| 1 | 
| hash | (chr) length can be > 1 for bulk queries | 
| type | (chr) hash type. All passed-in hashes must be of the same type. Default is  | 
data frame for md5 and sha1; list for sha256
SHA-256 bulk lookups are not supported by the CIRCL hash lookup API
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # individual
hl_query("8ED4B4ED952526D89899E723F3488DE4", "md5")
hl_query("FFFFFDAC1B1B4C513896C805C2C698D9688BE69F", "sha1")
hl_query("301c9ec7a9aadee4d745e8fd4fa659dafbbcc6b75b9ff491d14cbbdd840814e9", "sha256")
# bulk
hl_query(
  hash = c(
    "6E2F8616A01725DCB37BED0A2495AEB2",
    "8ED4B4ED952526D89899E723F3488DE4",
    "344428FA4BA313712E4CA9B16D089AC4"
  ),
  type = "md5"
)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.