Skip to content

Instantly share code, notes, and snippets.

ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpvfR7dFNvxWz9cVGS9lAbEgtaKwea+y9IXiqSJcCNv4aqJD02BBYimhDk1zU8+o+es9Fbnjf8KFlRB/gq0NBrRbRZK+UqEm8LnlvHHlNBpqxw0Et4JTID1InkgNVMPQKEEkN6b31fu9TsNuC/gn86FdQT6iFvy8Yhn78vQpJmlCEbrytA212hlVRc3NIOknZK+eAm9us6JzdPs9yZAD68KjRXbCC9D5WZYJk1VGy9R08jCa5I0x+SYJ4vT/4N1tI3kCsSwCW5bs0MF4l137VVqPXgXkD6WPCm/4JI+BnXr8caRjbD13CLwiD3LUZVFeKltjgHG1WhP9NtqxGUmszQ/1lmfRhEsF0OLq5bJRIm33oH/fM2nQSzMRD0y7k0YihwXwpjwBrdnfsUzHYCapswrNugilSJkvwUGeum7bxC1U5oWx9pmhRSZbwyg83KMPZ2JK6bH55ps9x11A5l4klbpEQcGPgStYJBWSrBv6WfD2jrGLDorMQoNqQsVY+zAWU= stevenbarnett@fafnir
@stevendesu
stevendesu / HMAC.js
Created April 30, 2020 16:18
A simple, open-source, HMAC-SHA256 implementation in pure JavaScript. Designed for efficient minification.
// To ensure cross-browser support even without a proper SubtleCrypto
// impelmentation (or without access to the impelmentation, as is the case with
// Chrome loaded over HTTP instead of HTTPS), this library can create SHA-256
// HMAC signatures using nothing but raw JavaScript
/* eslint-disable no-magic-numbers, id-length, no-param-reassign, new-cap */
// By giving internal functions names that we can mangle, future calls to
// them are reduced to a single byte (minor space savings in minified file)
var uint8Array = Uint8Array;
@stevendesu
stevendesu / designer.html
Created November 15, 2015 01:15
designer
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-icon-button/paper-icon-button.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../core-item/core-item.html">
<polymer-element name="my-element">
@stevendesu
stevendesu / designer.html
Last active November 14, 2015 23:07
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-field/core-field.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-input/core-input.html">
<link rel="import" href="../core-icons/core-icons.html">