Name
SHA1Str -- calculate SHA1 hash of string (V11.0)
Synopsis
hash$ = SHA1Str(s$)
Library
string

Function
This function calculates the SHA1 hash of the string specified in s$ and returns it. The 160-bit checksum is returned as a string containing 20 hex digits. Note that Hollywood strings can also contain binary data so that you can also use this function with non-text strings.

If you want to compute the SHA1 hash of a file, use the SHA1() function instead.

Inputs
s$
string whose SHA1 hash you want to have calculated
Results
hash$
SHA1 hash of string

Show TOC