Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 620 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 620 Bytes

Using libotp

libotp is a simple java One-time password generator library, which can easily be used to facilitate two-factor authentication in Java applications. The library current supports the standard RFC counter based (hotp) and time based (totp) algorithms. Custom OTP providers can also be written by implementing the OTPProvider interface.

Example

Below is an example of generating time-based password

OTP.generate("12345678", "" + System.currentTimeMillis(), 6, "totp")

Following is an example of counter-based password

OTP.generate("helloworld", "2", 6, "hotp")