function pbkdf2import { pbkdf2 } from "https://deno.land/std@0.116.0/node/_crypto/pbkdf2.ts"; pbkdf2(password: HASH_DATA,salt: HASH_DATA,iterations: number,keylen: number,digest?: Algorithms,callback: ((err: Error | null, derivedKey?: Buffer) => void),): voidParameterspassword: HASH_DATANeeds to be higher or equal than zero salt: HASH_DATANeeds to be higher or equal than zero but less than max allocation size (2^30) iterations: numberAlgorithm to be used for encryption keylen: numberoptionaldigest: Algorithms = [UNSUPPORTED]callback: ((err: Error | null, derivedKey?: Buffer) => void)Returnsvoid