package testgenerator; import iaik.apps.util.passphrase.PassphrasePrompt; /** * @author Administrator * * To change this generated comment edit the template variable "typecomment": * Window>Preferences>Java>Templates. * To enable and disable the creation of type comments go to * Window>Preferences>Java>Code Generation. */ public class Pass implements PassphrasePrompt { public Pass() {}; public void setCancelAllowed(boolean b) {}; public void setMessage(Object o) {}; public boolean isCancelAllowed() { return false; } public char[] promptPassphrase() { return "1111".toCharArray(); }; public void setProtectedResourceInfo(Object o) {}; }