Android Open Source - secure-authenticator O T P Item






From Project

Back to project page secure-authenticator.

License

The source code is released under:

MIT License

If you think the Android project secure-authenticator listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package admu.thesis.secureauthenticator;
/*  w  ww  . j  a  v a2s .  c om*/
import android.app.Application;

/**
 * Created by Ian on 7/18/13.
 */
public class OTPItem extends Application {
    private String seed = "null";
    private String appPassword = "";
    private boolean passwordEnabled;

    public String getSeed() {
        return seed;
    }

    public void setSeed(String seed) {
        this.seed = seed;
    }

    public String getAppPassword() { return appPassword; }

    public void setAppPassword(String appPassword) { this.appPassword = appPassword; }

    public boolean getPasswordEnabled() { return passwordEnabled; }

    public void setPasswordEnabled(boolean passwordEnabled) { this.passwordEnabled = passwordEnabled; }
}




Java Source Code List

admu.thesis.secureauthenticator.AppPasswordActivity.java
admu.thesis.secureauthenticator.BCrypt.java
admu.thesis.secureauthenticator.EnrollmentFragment.java
admu.thesis.secureauthenticator.MainActivity.java
admu.thesis.secureauthenticator.OTPFragment.java
admu.thesis.secureauthenticator.OTPItem.java
admu.thesis.secureauthenticator.TOTP.java