Encryption Functions

Generate Hash, SHA1, SHA256, SHA512
  • HASH

    Generate a hash value (message digest)

    HASH("sha256","Some string")
    Try this example
    algo (string)
    Name of selected hashing algorithm (e.g. "md5", "sha256", "haval160,4", etc..)
    data (string)
    Message to be hashed.
  • SHA1

    Calculate the sha1 hash of a string

    SHA1("Antify")
    Try this example
    str (string)
    The input string.
  • SHA256

    Generates the sha256 hash of the string

    SHA256("Antify")
    Try this example
    string (string)
    Message to be hashed.
  • SHA512

    Generates the sha512 hash of the string

    SHA512("Antify")
    Try this example
    string (string)
    Message to be hashed.