Skip to content

Latest commit

 

History

History
9 lines (4 loc) · 833 Bytes

README.md

File metadata and controls

9 lines (4 loc) · 833 Bytes

Two Factor Authorization for CUBA applications

If a user wants to enable two factor authentication then they go to Help - Settings menu and click on Two factor auth - Enable / Regenerate. Then they scan QR code using Google Authenticator (Or another authenticator app). This secret key is stored to DB, see extended User entity - ExtUser with two additional attributes: totpSecret and totpValidationCode.

After that they can log in to the system only if they enter additional Auth key to login form.

This demo uses Vaadin add-on org.vaadin.addons:qrcode:2.1 and com.warrenstrange:googleauth:1.1.1 library. See extended login screen, settings screen and TwoFactorLoginPasswordAuthenticationProvider class for implementation details.