UNPKG

gen-totp

Version:

A time-based One-time Password generator that uses current time as a source of uniqueness, following RFC 6238.

38 lines (33 loc) 2.05 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Generate TOTP</title> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="description" content="Time-based One-time Password is a computer algorithm that generates a one-time password which uses the current time as a source of uniqueness"> <link rel="icon" href="https://milad-ezzat.vercel.app/_next/image?url=%2Fstatic%2Fprojects%2Ftotp.jpeg&w=640&q=75" type="image/x-icon" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"> <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"> <meta property="og:title" content="Time-based One-time Password is a computer algorithm that generates a one-time password which uses the current time as a source of uniqueness" /> <meta property="og:url" content="https://60-min-code.github.io/gen-totp" /> <meta property="og:type" content="website" /> <meta property="og:image" content="https://milad-ezzat.vercel.app/_next/image?url=%2Fstatic%2Fprojects%2Ftotp.jpeg&w=640&q=75" /> <meta name="twitter:title" content="Time-based One-time Password is a computer algorithm that generates a one-time password which uses the current time as a source of uniqueness"> <meta name="twitter:description" content="Time-based One-time Password is a computer algorithm that generates a one-time password which uses the current time as a source of uniqueness"> <meta name="twitter:image" content="https://milad-ezzat.vercel.app/_next/image?url=%2Fstatic%2Fprojects%2Ftotp.jpeg&w=640&q=75"> <meta name="twitter:card" content="https://milad-ezzat.vercel.app/_next/image?url=%2Fstatic%2Fprojects%2Ftotp.jpeg&w=640&q=75"> </head> <body> <div id="app"></div> <script> window.$docsify = { name: 'gen-toto', repo: 'https://github.com/miladezzat/gen-totp.git', loadSidebar: true, maxLevel: 2, } </script> <!-- Docsify v4 --> <script src="//cdn.jsdelivr.net/npm/docsify@4"></script> </body> </html>