Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
(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');
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);
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);
(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");