Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 484 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 484 Bytes

SHA-256 Luau

A pure Luau implementation of the SHA-256 hashing algorithm. Blazing fast (for Luau) and well-tested.

API

This module returns a single function with the following type signature:

sha256(message: string): (string, {number})

The message passed to this function will be hashed using the hashing algorithm. The hash is returned in two forms:

  1. As a sequence of 64 hexadecimal digits
  2. A read-only array of eight 32-bit words that represent the hash