Created
May 31, 2020 13:54
-
-
Save AvnerCohen/d056dc1aedbf336f2df0bbed040b2d8e to your computer and use it in GitHub Desktop.
Deno standard library MD5 example.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Md5 } from "https://deno.land/std/hash/md5.ts" | |
const md5 = new Md5(); | |
d5.update("moshe").toString(); | |
// Other hash functions - https://deno.land/std/hash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment