An open API service indexing awesome lists of open source software.

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.

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/..."
]);
```