How to use the any-base.BASE32 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');
  var shaObj = new jsSHA("SHA-1", "HEX");
  shaObj.setHMACKey(secretHex, "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