TOTP / Two-Factor Authentication

Add-On

Time-based one-time password support for adding two-factor authentication to user login flows.

Status
Planned
Supported Version
TBD
Licensing
Free
Usage Example

Here's how you'll use TOTP / Two-Factor Authentication with Oorian once the extension is available:

Java
// Create and configure TOTP / Two-Factor Authentication component
TOTPTwoFactorAuthentication component = new TOTPTwoFactorAuthentication();
component.setWidth("100%");
component.setHeight("400px");

// Configure component options
component.setEnabled(true);

// Register for events using Oorian's event model
component.registerForEvent(this, TOTPTwoFactorAuthenticationEvent.class);

// Add to your page
container.addElement(component);

Note: This is a preview of the expected API. The actual implementation may vary slightly when released.