Last active
June 12, 2021 16:57
-
-
Save kt3k/a788436d26b77c82b7be10c2b0ca66ed to your computer and use it in GitHub Desktop.
This file contains hidden or 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 { hmac } from "https://deno.land/x/[email protected]/mod.ts"; | |
| addEventListener("fetch", (e) => { | |
| e.respondWith(new Response(hmac("sha256", "key", "msg", "utf8", "base64"))); | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment