Repository
Current version released
5 years ago
Dependencies
denopkg.com
Versions
sha512
SHA2-512 for deno.
Usage
import { sha512 } from "https://denopkg.com/chiefbiiko/sha512/mod.ts";
console.log('SHA2-512 of ""', sha512("", "utf8", "hex"))API
new SHA512()
Creates a new SHA2-512 instance.
SHA512#init(): SHA512
Initializes a hash instance.
SHA512#update(msg: string | Uint8Array, inputEncoding?: string): SHA512
Updates a hash with additional data. inputEncoding can be one of "utf8", "hex", or "base64".
SHA512#digest(outputEncoding?: string): string | Uint8Array
Get a hash digest. outputEncoding can be one of "utf8", "hex", or "base64". If it is omitted a Uint8Array is returned.
sha512(msg: string | Uint8Array, inputEncoding?: string, outputEncoding?: string): string | Uint8Array
Convenience function for hashing singular data.