Java ME TOTP (RFC 6238) authenticator. It can be used as a token generator for
- Google's two phase authentication
- LinOTP authentication
- other authentication servers which support TOTP
URL: http://totpme.sourceforge.net
You can simply build the software yourself.
You should have git installed
$ git clone git://github.com/kwart/totp-me.git
or you can download current sources as a zip file
You need to have Maven installed
$ cd totp-me
$ mvn clean package
This default build uses Microemulator API implementation to simplify the build process, but it's only MIDP-2.0
implementation. To be sure the source code is MIDP-1.0 compatible, you should install Oracle WTK and provide
path to it to Maven as wtk.home
system property
$ mvn clean package -Dwtk.home=/opt/WTK2.5.2
Just use exec:java
goal after you've successfully built the project
$ mvn exec:java