Package org.rssowl.ui.internal.dialogs

Examples of org.rssowl.ui.internal.dialogs.MasterPasswordDialog


    final PBEKeySpec[] spec = new PBEKeySpec[1];
    final Shell activeShell = OwlUI.getActiveShell();

    JobRunner.runSyncedInUIThread(activeShell, new Runnable() {
      public void run() {
        MasterPasswordDialog dialog = new MasterPasswordDialog(activeShell, passwordType);
        if (dialog.open() == IDialogConstants.OK_ID) {
          String masterPassword = dialog.getMasterPassword();
          String internalPassword;

          /* Try using digest of what was entered */
          try {
            MessageDigest digest = MessageDigest.getInstance(DIGEST_ALGORITHM);
View Full Code Here

TOP

Related Classes of org.rssowl.ui.internal.dialogs.MasterPasswordDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.