Class SHA512_256

See also sha

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

byteLength: 32

The number of bytes the hash will produce

Methods

  • Finalize the hash

    Parameters

    • encoding: DigestEncoding

      DigestEncoding to return the hash in. If none is provided, it will return a Uint8Array.

    Returns string

  • Finalize the hash

    Parameters

    • Optional hashInto: TypedArray

      TypedArray to write the hash into. Faster than creating a new one each time

    Returns TypedArray

  • Run the hash over the given data

    Parameters

    • input: StringOrBuffer

      string, Uint8Array, or ArrayBuffer to hash. Uint8Array or ArrayBuffer is faster.

    • Optional hashInto: TypedArray

      TypedArray to write the hash into. Faster than creating a new one each time

    Returns TypedArray

  • Run the hash over the given data

    Parameters

    • input: StringOrBuffer

      string, Uint8Array, or ArrayBuffer to hash. Uint8Array or ArrayBuffer is faster.

    • encoding: DigestEncoding

      DigestEncoding to return the hash in

    Returns string

Generated using TypeDoc