mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 18:52:50 +00:00
updated bunch of file paths and changed the way posts are loaded
This commit is contained in:
198
node_modules/jodid25519/lib/utils.js
generated
vendored
Normal file
198
node_modules/jodid25519/lib/utils.js
generated
vendored
Normal file
@@ -0,0 +1,198 @@
|
||||
"use strict";
|
||||
/**
|
||||
* @fileOverview
|
||||
* A collection of general utility functions..
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (c) 2011, 2012, 2014 Ron Garret
|
||||
* Copyright (c) 2007, 2013, 2014 Michele Bini
|
||||
* Copyright (c) 2014 Mega Limited
|
||||
* under the MIT License.
|
||||
*
|
||||
* Authors: Guy K. Kloss, Michele Bini, Ron Garret
|
||||
*
|
||||
* You should have received a copy of the license along with this program.
|
||||
*/
|
||||
|
||||
var core = require('./core');
|
||||
|
||||
/**
|
||||
* @exports jodid25519/utils
|
||||
* A collection of general utility functions..
|
||||
*
|
||||
* @description
|
||||
* A collection of general utility functions..
|
||||
*/
|
||||
var ns = {};
|
||||
|
||||
var _HEXCHARS = "0123456789abcdef";
|
||||
|
||||
function _hexencode(vector) {
|
||||
var result = [];
|
||||
for (var i = vector.length - 1; i >= 0; i--) {
|
||||
var value = vector[i];
|
||||
result.push(_HEXCHARS.substr((value >>> 12) & 0x0f, 1));
|
||||
result.push(_HEXCHARS.substr((value >>> 8) & 0x0f, 1));
|
||||
result.push(_HEXCHARS.substr((value >>> 4) & 0x0f, 1));
|
||||
result.push(_HEXCHARS.substr(value & 0x0f, 1));
|
||||
}
|
||||
return result.join('');
|
||||
}
|
||||
|
||||
function _hexdecode(vector) {
|
||||
var result = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
|
||||
for (var i = vector.length - 1, l = 0; i >= 0; i -= 4) {
|
||||
result[l] = (_HEXCHARS.indexOf(vector.charAt(i)))
|
||||
| (_HEXCHARS.indexOf(vector.charAt(i - 1)) << 4)
|
||||
| (_HEXCHARS.indexOf(vector.charAt(i - 2)) << 8)
|
||||
| (_HEXCHARS.indexOf(vector.charAt(i - 3)) << 12);
|
||||
l++;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
var _BASE32CHARS = "abcdefghijklmnopqrstuvwxyz234567";
|
||||
|
||||
var _BASE32VALUES = (function () {
|
||||
var result = {};
|
||||
for (var i = 0; i < _BASE32CHARS.length; i++) {
|
||||
result[_BASE32CHARS.charAt(i)] = i;
|
||||
}
|
||||
return result;
|
||||
})();
|
||||
|
||||
function _base32encode(n) {
|
||||
var c;
|
||||
var r = "";
|
||||
for (c = 0; c < 255; c += 5) {
|
||||
r = _BASE32CHARS.substr(core.getbit(n, c)
|
||||
+ (core.getbit(n, c + 1) << 1)
|
||||
+ (core.getbit(n, c + 2) << 2)
|
||||
+ (core.getbit(n, c + 3) << 3)
|
||||
+ (core.getbit(n, c + 4) << 4), 1)
|
||||
+ r;
|
||||
}
|
||||
return r;
|
||||
}
|
||||
|
||||
function _base32decode(n) {
|
||||
var c = 0;
|
||||
var r = core.ZERO();
|
||||
var l = n.length;
|
||||
for (c = 0; (l > 0) && (c < 255); c += 5) {
|
||||
l--;
|
||||
var v = _BASE32VALUES[n.substr(l, 1)];
|
||||
core.setbit(r, c, v & 1);
|
||||
v >>= 1;
|
||||
core.setbit(r, c + 1, v & 1);
|
||||
v >>= 1;
|
||||
core.setbit(r, c + 2, v & 1);
|
||||
v >>= 1;
|
||||
core.setbit(r, c + 3, v & 1);
|
||||
v >>= 1;
|
||||
core.setbit(r, c + 4, v & 1);
|
||||
}
|
||||
return r;
|
||||
}
|
||||
|
||||
function _map(f, l) {
|
||||
var result = new Array(l.length);
|
||||
for (var i = 0; i < l.length; i++) {
|
||||
result[i] = f(l[i]);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
function _chr(n) {
|
||||
return String.fromCharCode(n);
|
||||
}
|
||||
|
||||
function _ord(c) {
|
||||
return c.charCodeAt(0);
|
||||
}
|
||||
|
||||
function _bytes2string(bytes) {
|
||||
return _map(_chr, bytes).join('');
|
||||
}
|
||||
|
||||
function _string2bytes(s) {
|
||||
return _map(_ord, s);
|
||||
}
|
||||
|
||||
|
||||
// Expose some functions to the outside through this name space.
|
||||
|
||||
/**
|
||||
* Encodes an array of unsigned 8-bit integers to a hex string.
|
||||
*
|
||||
* @function
|
||||
* @param vector {array}
|
||||
* Array containing the byte values.
|
||||
* @returns {string}
|
||||
* String containing vector in a hexadecimal representation.
|
||||
*/
|
||||
ns.hexEncode = _hexencode;
|
||||
|
||||
|
||||
/**
|
||||
* Decodes a hex string to an array of unsigned 8-bit integers.
|
||||
*
|
||||
* @function
|
||||
* @param vector {string}
|
||||
* String containing vector in a hexadecimal representation.
|
||||
* @returns {array}
|
||||
* Array containing the byte values.
|
||||
*/
|
||||
ns.hexDecode = _hexdecode;
|
||||
|
||||
|
||||
/**
|
||||
* Encodes an array of unsigned 8-bit integers using base32 encoding.
|
||||
*
|
||||
* @function
|
||||
* @param vector {array}
|
||||
* Array containing the byte values.
|
||||
* @returns {string}
|
||||
* String containing vector in a hexadecimal representation.
|
||||
*/
|
||||
ns.base32encode = _base32encode;
|
||||
|
||||
|
||||
/**
|
||||
* Decodes a base32 encoded string to an array of unsigned 8-bit integers.
|
||||
*
|
||||
* @function
|
||||
* @param vector {string}
|
||||
* String containing vector in a hexadecimal representation.
|
||||
* @returns {array}
|
||||
* Array containing the byte values.
|
||||
*/
|
||||
ns.base32decode = _base32decode;
|
||||
|
||||
|
||||
/**
|
||||
* Converts an unsigned 8-bit integer array representation to a byte string.
|
||||
*
|
||||
* @function
|
||||
* @param vector {array}
|
||||
* Array containing the byte values.
|
||||
* @returns {string}
|
||||
* Byte string representation of vector.
|
||||
*/
|
||||
ns.bytes2string = _bytes2string;
|
||||
|
||||
|
||||
/**
|
||||
* Converts a byte string representation to an array of unsigned
|
||||
* 8-bit integers.
|
||||
*
|
||||
* @function
|
||||
* @param vector {array}
|
||||
* Array containing the byte values.
|
||||
* @returns {string}
|
||||
* Byte string representation of vector.
|
||||
*/
|
||||
ns.string2bytes = _string2bytes;
|
||||
|
||||
module.exports = ns;
|
||||
Reference in New Issue
Block a user