UNPKG

nitlix-crypto

Version:

😍 Another starting collection of hashing, salting and other encryption tools 🚀 for the back-end side of the web.

4 lines (3 loc) 155 B
type NativeHashMethod = "SHA-256" | "SHA-384" | "SHA-512"; export default function (input: string, method?: NativeHashMethod): Promise<string>; export {};