How to use the any-base.DEC function in any-base

To help you get started, we’ve selected a few any-base examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github qoomon / otp-authenticator-webapp / bundle.js View on Github external
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o= minLength) {
       return str
   }
   return pad.repeat(minLength - str.length) + str;
};

function getTotp(secretBase32){
  var stepSeconds = 30;
  var secretHex = base32ToHex(secretBase32);
  var epochSeconds = Math.floor(new Date().getTime() / 1000.0);
  var timeHex = decToHex(String(Math.floor(epochSeconds / stepSeconds)))
  var timeHexPadded = leftPad(timeHex, 16, '0');
github seek-oss / treat / packages / treat / webpack-plugin / AllocationHandler.js View on Github external
const anyBase = require('any-base');
const { writeManifest, readManifest } = require('./manifest');

const validClassCharacters = `abcdefghijklmnopqrstuvwxyz${anyBase.DEC}`;

const decToIdent = anyBase(anyBase.DEC, validClassCharacters);

const SEP = '?';

module.exports = class AllocationHandler {
  constructor({ manifestFile }) {
    this.newAllocations = false;
    this.allocations = [];
    this.manifestFile = manifestFile;

    this.enableNewAllocations = this.enableNewAllocations.bind(this);
    this.purgeAllocations = this.purgeAllocations.bind(this);
    this.getAllocationKey = this.getAllocationKey.bind(this);
    this.getAllocationIndex = this.getAllocationIndex.bind(this);
    this.allocate = this.allocate.bind(this);
    this.getAllocationIdent = this.getAllocationIdent.bind(this);
    this.getAllocations = this.getAllocations.bind(this);
github seek-oss / treat / packages / treat / webpack-plugin / AllocationHandler.js View on Github external
const anyBase = require('any-base');
const { writeManifest, readManifest } = require('./manifest');

const validClassCharacters = `abcdefghijklmnopqrstuvwxyz${anyBase.DEC}`;

const decToIdent = anyBase(anyBase.DEC, validClassCharacters);

const SEP = '?';

module.exports = class AllocationHandler {
  constructor({ manifestFile }) {
    this.newAllocations = false;
    this.allocations = [];
    this.manifestFile = manifestFile;

    this.enableNewAllocations = this.enableNewAllocations.bind(this);
    this.purgeAllocations = this.purgeAllocations.bind(this);
    this.getAllocationKey = this.getAllocationKey.bind(this);
    this.getAllocationIndex = this.getAllocationIndex.bind(this);
    this.allocate = this.allocate.bind(this);
github qoomon / otp-authenticator-webapp / bundle.js View on Github external
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o= minLength) {
       return str
   }
   return pad.repeat(minLength - str.length) + str;
};

function getTotp(secretBase32){
  var stepSeconds = 30;
  var secretHex = base32ToHex(secretBase32);
  var epochSeconds = Math.floor(new Date().getTime() / 1000.0);
  var timeHex = decToHex(String(Math.floor(epochSeconds / stepSeconds)))
  var timeHexPadded = leftPad(timeHex, 16, '0');
  var shaObj = new jsSHA("SHA-1", "HEX");

any-base

Converter from any base to other any base

MIT
Latest version published 7 years ago

Package Health Score

62 / 100
Full package analysis