Skip to content

Instantly share code, notes, and snippets.

View jmanoto's full-sized avatar

Jeremy Manoto jmanoto

  • Sydney, Australia
  • 01:47 (UTC +10:00)
View GitHub Profile
@jmanoto
jmanoto / js-crypto-libraries.md
Created September 19, 2016 11:41 — forked from jo/js-crypto-libraries.md
List of JavaScript Crypto libraries.

JavaScript Crypto Libraries

I start with a list and plan to create a comparison table.

WebCryptoAPI

http://www.w3.org/TR/WebCryptoAPI/

This specification describes a JavaScript API for performing basic cryptographic operations in web applications, such as hashing, signature generation and verification, and encryption and decryption. Additionally, it describes an API for applications to generate and/or manage the keying material necessary to perform these operations. Uses for this API range from user or service authentication, document or code signing, and the confidentiality and integrity of communications.

@jmanoto
jmanoto / options.js
Last active August 29, 2015 14:01
Beta Dashboard Forecast widget (fork from mlava)
return {
"name": "Ninja Forecast.io",
"deviceMap": [
{ "deviceId": 2000, "minimum": 1, "maximum": 1} // Sandbox device until more specific ID is availble
],
"forceDeviceMapGroup": true
}
@jmanoto
jmanoto / options.js
Created August 19, 2013 06:48 — forked from elliots/options.js
Notification (style update)
return {
"name": "Notification",
"deviceMap": [{ "deviceType": "notification" }]
}
@jmanoto
jmanoto / options.js
Last active December 21, 2015 06:48 — forked from elliots/options.js
Lock Screen (style update)
return {
"name": "Lock Screen",
"deviceMap": [{ "deviceType": "lock-screen" }]
}
@jmanoto
jmanoto / options.js
Last active December 21, 2015 06:48 — forked from elliots/options.js
Text to Speech (style update)
return {
"name": "Text-to-speech",
"deviceMap": [{ "deviceType": "speech" }]
}
@jmanoto
jmanoto / options.js
Last active December 21, 2015 06:48 — forked from elliots/options.js
Open Url (updated style)
return {
"name": "Open URL",
"deviceMap": [{ "deviceType": "openurl" }]
}