https://github.com/rwv/otpauth-migration
🔐 Convert between otpauth-migration and otpauth in JavaScript.
https://github.com/rwv/otpauth-migration
otp otpauth otpauth-migration
Last synced: 7 months ago
JSON representation
🔐 Convert between otpauth-migration and otpauth in JavaScript.
- Host: GitHub
- URL: https://github.com/rwv/otpauth-migration
- Owner: rwv
- License: mit
- Created: 2023-02-02T08:06:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-05T17:17:08.000Z (about 1 year ago)
- Last Synced: 2025-03-24T16:40:39.637Z (7 months ago)
- Topics: otp, otpauth, otpauth-migration
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/otpauth-migration
- Size: 681 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# otpauth-migration
Convert between otpauth-migration and otpauth in JavaScript.## Usage
``` js
import { URI } from "otpauth-migration";const OTPAuthURI = URI.toOTPAuthURIs("otpauth-migration://offline?data=...");
const OTPAuthMigrationURI = URI.toOTPAuthMigrationURI([
"otpauth://totp/...",
"otpauth://totp/..."
]);
```