Trouble With Password Encryption in Acrobat 8.1 Professional

Can someone suggest a solution or are you experiencing the same problem?  Each time I g
o to password encrypt, I get an erro message saying that 8.1 encountered an error and is closing.
This happens several seconds after clicking on the passord radio button.

Not that silly; but you ideally shouldn't be trying. Although there are some rudimentary (and sometimes unpredictable) editing tools in Acrobat, (I presume you are trying with the TouchUp Object tool as well as the TouchUp Text ?) much better to get it right in the source application and think of the pdf as what it basically is...a print.
For whatever reason, v5 could edit text positioning rather more easily than the later versions.

Similar Messages

  • HT201320 I am having trouble with password. Forgetting password,as I have many mail IDs like yahoo,gmail,hotmail,apple, I cloud etc.,thus confusing about password and restating through procedures. The altered password is not accepted I Safari

    I am having trouble with password. Forgetting password,as I have many mail IDs like yahoo,gmail,hotmail,apple, I cloud etc.,thus confusing about password and restating through procedures. The altered password is not accepted I Safari. When I want to open my mail but window appears as incorrect password though the mail appears on the left. however whe I go to my mail separately opening my mail, without mail icon in my pad.

    I'm having the same problem, what did you do?

  • Help with password encryption

    Hello I am trying to create a one way hash password encryption...here is what I have developed so far.....
    Login class (contains GUI)
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    import java.awt.image.*;
    import javax.imageio.*;
    public class Login implements ActionListener
      // declare class variables and objects
      // overall frame
      private FrameBase jf;
      // buttons
      private JButton btnNewUser,btnLogin;
      // data display labels
      private JLabel lblMessage, lblUser, lblPassword, lblTitle, lblCheck,lblNotes;
      // text fields for data entry
      private JTextField txtUser, txtPassword,txtCheck;
      // graphic object
      private BufferedImage eSay;
      // panels for organization
      private JPanel pnlTitle, pnlMain, pnlGraphic;
      // font objects
      private Font fntTitle, fntMain, fntControl,fntNotes;
      // user name for repeated set screen calls
      private String name;
      // store screen layout option code
      private int option;
      // option 1 - regular start-up
      // option 2 - new user screen
      // option 3 - user / password check
      public Login(String name)
        // set up the fonts
        fntTitle=new Font("Helvetica", Font.BOLD, 25);
        fntMain=new Font("Helvetica", Font.BOLD, 20);
        fntControl=new Font("Helvetica", Font.BOLD, 15);
        fntNotes=new Font("Helvetica", Font.BOLD, 16);
        // set the BufferedImage object to null;
        eSay=null;
        try
          // load the image from disk into a BufferedImage object
          eSay=ImageIO.read(new File("h:\\My documents\\ICS4M1\\Login\\eSay.jpg"));
          // set up the screen
          this.name=name;
          this.option=1;
          setScreen(name);
        catch (IOException e)
          // message if file not found
          System.out.println("Image not found");
      public void setScreen(String name)
        jf= new FrameBase(name);
        // set up the screen
        Container contentPane=jf.getContentPane();
        contentPane.setLayout(new BorderLayout());
        // set up the graphic
        pnlGraphic=new JPanel();
        pnlGraphic.setLayout(new BorderLayout());
        // load the BufferedImage into the ImageLabel
        ImageLabel il=new ImageLabel(eSay,"");
        // load the ImageLabel onto the panel
        pnlGraphic.add("Center",il);
        // set up the title section
        lblTitle=new JLabel("Welcome to eSay",0);
        lblTitle.setFont(fntTitle);
        lblMessage=new JLabel("Enter user name and password and click on Login or click on New User to set up a new account",0);
        lblMessage.setFont(fntControl);
        // set up the panel for the title area
        pnlTitle=new JPanel();
        pnlTitle.setLayout(new GridLayout(2,1));
        pnlTitle.add(lblTitle);
        pnlTitle.add(lblMessage);
        // set up the input section of the screen
        lblUser=new JLabel("User: ");
        lblUser.setFont(fntMain);
        lblPassword=new JLabel("Password: ");
        lblPassword.setFont(fntMain);
        lblCheck=new JLabel("Re-Type Password: ");
        lblCheck.setFont(fntMain);
        lblCheck.setEnabled(false);
        lblNotes=new JLabel("<html><font color=\"red\">User name 6 to 10 alphanumeric characters,  password 5 to 8 alphanumeric characters, </font></html>",0);
        lblNotes.setFont(fntNotes);
        txtUser=new JTextField(20);
        txtUser.setFont(fntMain);
        txtPassword=new JTextField(20);
        txtPassword.setFont(fntMain);
        txtCheck=new JTextField(20);
        txtCheck.setFont(fntMain);
        txtCheck.setEnabled(false);
        btnLogin=new JButton("Login");
        btnLogin.setFont(fntMain);
        btnNewUser=new JButton("New User");
        btnNewUser.setFont(fntMain);
        // make the button active
        btnLogin.addActionListener(this);
        btnNewUser.addActionListener(this);
        // assemble the input section panel
        pnlMain=new JPanel();
        pnlMain.setLayout(new GridLayout(5,2));
        pnlMain.add(lblUser);
        pnlMain.add(txtUser);
        pnlMain.add(lblPassword);
        pnlMain.add(txtPassword);
        pnlMain.add(btnNewUser);
        pnlMain.add(btnLogin);
        pnlMain.add(lblCheck);
        pnlMain.add(txtCheck);
        // add the panels to the screen
        contentPane.add(pnlTitle,"North");
        contentPane.add(pnlGraphic,"Center");
        contentPane.add(pnlMain,"East");
        contentPane.add(lblNotes,"South");
        // set up and show the frame
        jf.setSize(900,400);
        jf.show();
      } // end of setScreen()
      public void actionPerformed(ActionEvent e)
        if (e.getSource()==btnNewUser)
          if (option==1)
            lblCheck.setEnabled(true);
            txtCheck.setEnabled(true);
            lblMessage.setText("Create a login name and password, enter the password twice as indicated");
            btnLogin.setEnabled(false);
            option=2;
          else if (option==2)
            String tempUser=txtUser.getText();
            String tempPassword=txtPassword.getText();
            String tempCheck=txtCheck.getText();
            if (tempPassword.equals(tempCheck))
              ValidateUser vu=new ValidateUser(tempUser,tempPassword);
              if (vu.getEncryptedPassword()==null)
                lblMessage.setText("Please check guidelines for user name and password and re-enter");
              else
                lblMessage.setText("Login created - Welcome to eSay!");
            else
              lblMessage.setText("Passwords do not match, please re-enter login and password twice");
        else if (e.getSource()==btnLogin)
      }  // actionPerformed
      public static void main(String args[])
        Login l=new Login("eSay Message Board");
    }  // end class Login            User class
    public class User
      private String userName;
      private String password;
      private int numberLogins;
      public User(String userName, String password)
        this.userName=userName;
        this.password=password;
        this.numberLogins=0;
      // gets for surname, first name and number of logins
      public String getUserName()
        return userName;
      public int getNumberLogins()
        return numberLogins;
      public void resetLogins()
        this.numberLogins=0;
      public void login()
        this.numberLogins++;
      public static void main(String args [])
           // enter test statements here
    } // end of User classValidate User(validation)
              System.out.println ("A character is invalid");
              return false;   
        return true;        
         // create an encrypted password if user name and password are valid
        public void encryptPassword()
        // standard get for encrypted password
        public String getEncryptedPassword()
          return encryptedPassword;
    }PasswordService(One way hash conversion)
    package org.myorg.services;
    import java.io.UnsupportedEncodingException;
    import java.security.MessageDigest;
    import java.security.NoSuchAlgorithmException;
    import org.myorg.SystemUnavailableException;
    import sun.misc.BASE64Encoder;
    import sun.misc.CharacterEncoder;
    public final class PasswordService
      private static PasswordService instance;
      private PasswordService()
      public synchronized String encrypt(String plaintext) throws SystemUnavailableException
        MessageDigest md = null;
        try
          md = MessageDigest.getInstance("SHA");
        catch(NoSuchAlgorithmException e)
          throw new SystemUnavailableException(e.getMessage());
        try
          md.update(plaintext.getBytes("UTF-8"));
        catch(UnsupportedEncodingException e)
          throw new SystemUnavailableException(e.getMessage());
        byte raw[] = md.digest();
        String hash = (new BASE64Encoder()).encode(raw);
        return hash;
      public static synchronized PasswordService getInstance()
        if(instance == null)
          return new PasswordService();
        else   
          return instance;
    }

    I was wondering if someone could help me to incorporate some kind of one way hash into the encryptPassword method in Validate user...i am having problems trying to call on the PasswordService and incorporating everything. The reason i supplied all the code was so that the reader could understand how different programs correlate with one another

  • Troubles with passwords after upgrade

    Hi, we upgraded the system from 4.6 to ECC 6. and now some of our users have the problems with passwords (login).
    We suspect that more users have the same password. Is it possible that in new verision users need to have different passwords?
    Thanks and BR
    Saso

    Note: SAP ECC 6.0 password is Case Sensitive.
    Regards
    Vinayak

  • Trouble with Select tool in Acrobat 9

    When I try to make a selection in a .pdf, the selection box is randomly sized and placed.  For example, I select an area in the middle of the page, but when I let go of the mouse the selection box reduces in size and moves up/down the page.  I am selecting an area with graphics, no text.  This does not happen with all my .pdf documents, only certain ones that have been created within certain programs (e.g., ArcGIS 9.3 and geoPDF's). 
    The Snapshot tool works fine, but the resolution of the selection is much poorer than what I get with the Selection tool after I paste the selection into a Word document. 
    Is there a way to fix this, or change the settings on the Snapshot tool for better resolution so that I can use that tool instead?
    Thanks in advance for your help.

    I suspect that's not the problem, as I have no trouble selecting an area of any size I wish of images/objects most of the time.  The Select tool, at least in Acrobat 9, allows you to do this.

  • Trouble with Drawing Markups in Acrobat Pro XI

    Hello all and thank you for any help that comes out of this.
    I use Acrobat XI for several forms for work.  They are timesheets.  I created these forms from another PDF that was given to me.  Part of the use of these forms involves adding Drawing Markups and editing the Markups later.  The Markups in this case are simple lines.  In Acrobat 9, this was an easy task.  I could easily grab the Markups I had inserted and manipulate them any way I chose.
    Now, in Acrobat XI, once I insert a line, I basically can no longer touch it without doing a very clumsy work-around.  Every once in a great while, I get lucky and am able to get my mouse over that one magic hidden pixel and then I can grab the Markup and do what I need.
    It just seems much, much more difficult working with Drawing Markups in the new version.
    Am I doing something wrong?  Is there an option I don't know about?
    Thank you in advance.
    Dave

    Gilad:
    The only choices Acrobat XI gives me are the "Selection tool for text and images" and the hand-shaped "Click to pan around the document" button.
    There is a "Tool Set" option under the View menu, but there is no "Interactive Objects" submenu.
    Please note the image I have included of the toolbar that I am presented with in Acrobat XI. Does the button you are suggesting I use exist anymore?  I haven't seen it since Acobat 9 and I have scanned through menus and see no way to add another Selection Tool to the toolbar. If it does exist, please tell me how to turn it on.
    Thank you!

  • Trouble with windows after deleting Acrobat 9 Standard

    After I delete Acrobat Standard 9, via the control Panel's Add/Remove Programs, I can no longer use any thing from the My Computer window (Windows XP).  No matter what I click on the hour glass appears and the workstation freezes,  I have to power down the workstation.  Even when this is done the issue does not go away.  I am forced to redo the desktop image.  This happens no matter which 9.0 update I have installed.  I have tried them all 9.1, 9.12 through 9.4.

    I suspect that's not the problem, as I have no trouble selecting an area of any size I wish of images/objects most of the time.  The Select tool, at least in Acrobat 9, allows you to do this.

  • Troubles with Windows after installing Acrobat X

    I built a Windows 7 machine from scratch twice and ended up with the same issue.  As soon as I install Adobe Acrobat X Standard, Windows Explorer freezes whenever I right-click on something in Windows Explorer (icon on desktop or inside folder).  I disabled the Acrobat Shell Extension but still have other problems.  I was unable to print anything to any of my printers.  If I right-clicked on a printer, it would freeze up again.  If I restarted the print spooler service, it resumed normal operation.  The first time I upgraded to the latest update (10.1.13) and had the same problem.  After the second reload, I left it at the default version 10.0.0.  I have the same problem either way.  I was able to remove all of the printers from Windows through registry and Windows System32 and recreated my printers.  I also recreated the Adobe PDF printer per Adobe's instructions on their website.  My initial tests proved successful.  But when my user went to try it, the "Creating Adobe PDF" window came up and he got about 3 bars and it froze.  I went in and tried printing some other PDFs, and it did create the files, but it would not let me delete the files.  It indicated that Acrobat.exe still had the file locked.  When I tried uninstalling Acrobat, it would stall part way through until I restarted the Print Spooler service.  I have also tried disabling the AntiVirus (SEP).
    I have spent way too many hours setting up this PC 3 different times and troubleshooting this.  My gut says that there is a Windows update that may be interfering with this.  But I don't know where to start.  This worked fine on his previous machine (same version of all software.
    I would appreciate any assistance.  Surely someone else has run into this before.  Thanks in advance.
    Bill

    Hi William ,
    Please perform the following steps .
    > Enable the hidden Admin Account on Windows 7 ( Ref :  http://www.howtogeek.com/howto/windows-vista/enable-the-hidden-administrator-account-on-wi ndows-vista/ )
    > Disable all Non-Microsoft Startup Services. (Ref : http://helpx.adobe.com/x-productkb/global/disable-startup-items-services-windows.html )
    > Disable all the Antivirus softwares like CA, Norton,Mc Afee etc. temporarily from the computer.
    Reboot and try installing in the new enabled Admin user account and check
    Regards
    Sukrit Dhingra

  • Having trouble with passwords

    when I go t enter ID and password on sites ,I have to reload page do to boxes with info being blank.

    Yes I get drop down box,but this is happening to sites that auto-load info into boxes.
    This does this occasionally and I suspect Firefox is ending the process to early to finish inputting info into screen.

  • Pmcmd with password encryption not working

    Hi All,Am trying to encrypt the password using  pmpasswd user -e CRYPT_DATEncrypted string -->XkCI4e8qUgMe0czryVIv7Q==<--Will decrypt to  -->user<--  ##setenv.ksh  export PC_USER=userexport PC_PWD="XkCI4e8qUgMe0czryVIv7Q=="export PC_TASK="starttask"export PC_WFLW="startworkflow"export PC_WAIT="-wait"export PC_PING=${PMHOME}"/server/bin/pmcmd pingservice "export PC_EXEC=${PMHOME}"/server/bin/pmcmd"  I have another script run_workflow.ksh where in  ./informatica/9.5.1/server/infa_shared/Scripts/setenv.ksh  $PC_EXEC $PC_WFLW -sv Int_test -d Domain_test -uv PC_USER -pv PC_PWD -f TEST $PC_WAIT wf_Test  But am getting error pmcmd failed (TEST:wf_Test) return code was 7Please let me know where am going wrong. Thanks.

    Hi,
    I'm afraid that you hit the wrong forum: it's Berkeley DB forum, not Oracle DB.
    Best regards,
    Rucong
    Oracle Berkeley DB

  • HT5625 Sometime trouble with password ? So being it hard ttime.

    My iPad 16GB and Model A1416 . So thank you for helpping !

    OK with a little googling around I discovered the DISH DVR formats its external drives for Linux using the ext file system. Windows cannot natively read ext formatted drives. If you plugged it into a machine running Linux you could read the drive. There is also a Windows program that will allow you to read ext formatted hard drives right from Windows.
    http://www.ext2fsd.com/?page_id=16
    This may also be kind of a fools errand because I am also seeing that the movies on the hard drive may be encrypted and can only be read by a DVR running your account anyway. If you just want to wipe the drive right click on each of the rectangles in Disk 1 and select delete volume or delete partition until the whole box is blank then create simple volume and format it ntfs and you have a useable external drive.
    You could also just delete one of the partitions like say the last one on the right which is 396.26 gb and then create a new partition in it and format it ntfs and give it a drive letter and then you would have a storage space for your laptop files. You could then keep the movies on the rest of the drive for when you get a new DVR. As I understand it from the DISH forums, when you plug the hard drive into a new DVR it will give the option to set it up to work on that DVR. Also I am not 100% clear that the external drives have encrypted movies. That may only apply to people who pull the hard drive out of the DVR and try to get movies from it.
    This is an interesting project. The real easy way to see if the movies can be played from a PC is to make a Linux Live disk like ubuntu, boot the system from it and plug in the hard drive while you are running Linux from the Live disk. You could then see if you can see the movies and if they will play in the Linux media player program and it would not cost anything or change anything on your computer. Post back if you want more info on how to try that.

  • Trouble with passwords

    Hi all,
    every time I start an application like Mail or Safari which wants to fill in passwords I am asked to type my user password, but I am already logged on.
    This is getting on my nerves and I don´t know how to stop this. HELP!

    This is a security feature. But you can - if you choose - disable it.
    if you want to allow an application, such as Mail, to access your keychain without asking you, you can select this option in Keychain Access.
    To set up automatic keychain access for an application:
    Open Keychain Access, located in Applications/Utilities.
    Click Show Keychains if the Keychains list is not open, then select a keychain.
    Select Application in the Passwords category. (Click the disclosure triangle if Application doesn't appear.)
    Double-click the password in the Keychain window, then click Access Control.
    To allow access to this password by any application, select "Allow all applications to access this item."
    To control access to this password, select "Confirm before allowing access."
    To require the keychain password instead of the application password, select "Ask for Keychain password."
    To add individual applications that can access this password, click Add and navigate to the application you want to add.
    IMPORTANT: If you select "Allow all applications to access this item" for an item in your keychain, you make it easy for a computer virus or other software to read the password.
    Click Save.
    I got this from Mac Help (click on help in the Finder and search using 'keychain'

  • I am having trouble with password on Creative Cloud, help

    I downloaded Creative Cloud and it asks for my password, I asume it is my Apple ID pass word but it does not work. I can't update or open some files. I have no idea how to change it or see what is the problem. I need to download Illustrator but can't without the correct pass word. How do you change your pass word?

    grandma,
    This may be one for Customer Care (tick I Still Need Help and hope for an agent available for a chat),
    http://helpx.adobe.com/contact.html?product=illustrator&topic=downloading-installing-and-s etting-up
    or for Adobe Support (phone),
    This may be one for Customer Care (tick I Still Need Help and hope for an agent available for a chat),
    http://helpx.adobe.com/contact.html?product=illustrator&topic=downloading-installing-and-s etting-up
    or for Adobe Support (phone),
    http://helpx.adobe.com/adobe-connect/adobe-connect-phone-numbers.html

  • Trouble with password requests.

    My Mac mini keeps asking for passwords. It does not like the passwords I put in. I do not think I setup passwords.

    Do y know what the passwords are for?

  • Trouble with Password

    I have a blackberry torch that was playing up .. ..  after contacting BT they going to replace it!  I didn't know the password, tried various options to save my info and now my phone is asking me to enter "blackberry" to unlock it but nothing happens!  My new phone is being delivered tomorrow and I haven't saved the data!! Help?

    I think if you input the word "blackberry", there's a message prompt that have to enter what is give. to unlock. If still not working, you'll need to wipe your device. Do you have back up on your BlackBerry Protect?
    Please thank those who help you by clicking the button.
    If your issue has been solved, please resolve it by marking "Accept as Solution"

Maybe you are looking for

  • Annotation options

    Can I put two optionals attributes in Annotation ? I want to put two integers, mininus and maximus, and in the annotation I want to put one of them or both. Example: @A(min="") or @A(max="") or @A(min="" max="") but not @A()

  • Standard Report -  ATP Failed Sales Orders

    Please let me know if there is a standard report to get the list of ATP failed sales orders. In a case where customer requested delivery date has not confirmed and a new delivery date confirmed which leads another schedule line of the material. My re

  • HP LaserJet P1006 won't print both sides (duplex)

    I have been using my printer for two years now and haven't had a problem till i needed to print on both sides of the page. It tells me to do all of the steps for it and then at the end it says push the go button or ok and i have no such buttons on my

  • Help with Dice program.

    Hi People! This is the homework my professor assigned for me. Assignment 2: Write a program that rolls two dice 1000 times, counting the number of box cars (two sixes) that occur, in object-oriented way. (In other words, do not make all your code in

  • CRM On Demand Rel 17 Patch Release Notes 1142.0.02 is Available

    CRM On Demand Rel 17 Patch Release Notes 1142.0.02 is Available. Go to MOS and search for ID 1104184.1