https://github.com/cityssm/2fa-server
A server for initializing two-factor authentication on user accounts.
https://github.com/cityssm/2fa-server
2fa google-authenticator microsoft-authenticator secret-keys totp two-factor-authentication
Last synced: 5 months ago
JSON representation
A server for initializing two-factor authentication on user accounts.
- Host: GitHub
- URL: https://github.com/cityssm/2fa-server
- Owner: cityssm
- License: mit
- Created: 2021-05-10T17:41:57.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-28T07:00:14.000Z (about 2 years ago)
- Last Synced: 2024-12-01T04:36:40.124Z (5 months ago)
- Topics: 2fa, google-authenticator, microsoft-authenticator, secret-keys, totp, two-factor-authentication
- Language: TypeScript
- Homepage:
- Size: 818 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Two-Factor Authentication Management Server
[](https://www.codacy.com/gh/cityssm/2fa-server/dashboard?utm_source=github.com&utm_medium=referral&utm_content=cityssm/2fa-server&utm_campaign=Badge_Grade) [](https://codeclimate.com/github/cityssm/2fa-server/maintainability) 

A server for users to initialize their secret two-factor authentication keys.
## Features
- User manages their own secret keys.
- Industry standard TOTP keys.## Authenticator Apps
The server generates secret keys and corresponding QR codes
compatible with popular authenticator apps.### Microsoft Authenticator

- [Microsoft Authenticator on Google Play](https://play.google.com/store/apps/details?id=com.azure.authenticator)
- [Microsoft Authenticator on Apple App Store](https://apps.apple.com/ca/app/microsoft-authenticator/id983156458)### Google Authenticator

- [Google Authenticator on Google Play](https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2)
- [Google Authenticator on Apple App Store](https://apps.apple.com/ca/app/google-authenticator/id388497605)## Need to Validate Tokens in Your Application?
There are many libraries that can be used to validate TOTP tokens.
If your application is implemented in Node.js,
[otplib](https://www.npmjs.com/package/otplib) is a fantastic choice!