Some git hooks scripts that can be useful
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
((sjcl.beware && sjcl.beware["CBC mode is dangerous because it doesn't protect message integrity."]) || | |
function(){})(); | |
var crypto_page = (function() { | |
var base64url_escape = function(b64) { | |
var out = ""; | |
for(i = 0; i < b64.length; i++) { | |
var c = b64.charAt(i); | |
if (c == '+') { |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
body { | |
background-color: black; | |
color: lightgreen; |