Skip to content

Instantly share code, notes, and snippets.

@kt3k
Last active June 12, 2021 16:57
Show Gist options
  • Select an option

  • Save kt3k/a788436d26b77c82b7be10c2b0ca66ed to your computer and use it in GitHub Desktop.

Select an option

Save kt3k/a788436d26b77c82b7be10c2b0ca66ed to your computer and use it in GitHub Desktop.
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