Apple Persistent State Encryption

Hi
I just noticed in my keychain there is a password for " apple persistent state encryption " Can anyone tell me what this is for ?
Thanks
Bob

Hi Michael
Used by the persistent state feature to encrypt window snapshots to ensure privacy. It is changed frequently.
I did do a get info and to tell the truth I did not understand the above info. In fact I goggled it and got no clear explanation either. Does it have to do with lion's resume feature or the full disk encryption implantation. Could you please elaborate ?
Thanks
Bob

Similar Messages

  • What is "apple persistent state encryption"?

    I'm having trouble with Google Chrome. It keeps asking for permission to allow info from my keychain for everything listed on my keychain. So I was looking at my  keychain and saw something I never saw before: "Apple Persistent State Encryption." I know this hasn't always been there. Besides the obvious idea of looking at what it says on Get info, is this supposed to be there? What is it really for?

    Hi Michael
    Used by the persistent state feature to encrypt window snapshots to ensure privacy. It is changed frequently.
    I did do a get info and to tell the truth I did not understand the above info. In fact I goggled it and got no clear explanation either. Does it have to do with lion's resume feature or the full disk encryption implantation. Could you please elaborate ?
    Thanks
    Bob

  • Please help me........for writing enititybean with persistent state

    I am new person in ejb,actually i am working on one module where ejb deployment
    is there in websphere 4.0 with oracle database ,where as my module form is just retrieving
    data from database for user but doest not create it.So according to sun specification
    entity bean should have create() and findByPrimaryKey() methods but in my case i have to
    just retrieve data i.e findByAllData(). Here i am passing a parameter institute_id,
    which is not a primarykey in this table which retrives records under that particular institute id
    but in my case entitybean doesn't initialize to any particular
    primary id since create() method is not existing in my bean so container doesn't
    have any account of primary key.So now it won't store the data in persistent
    state in the container because of none of the create() method for primarykey.But
    we want to store the data in entity bean in the appliaction server in the persistent
    state so how it can be done.
    ==========================================
    My databse table is :
    Table ims_class_mst
    columns class_id(primarykey),class_name,priority,institute_id
    =============================================
    My home interface is
    public interface StcaHome extends javax.ejb.EJBHome {
    public Collection findByAllPrimaryKey(Integer institute_id)
    throws FinderException, RemoteException;
    //collection is returning class_id,class_name through class stcakey and in parameter
    //is institute_id
    =======================================================================
    My bean is:
    public class StcaBean implements javax.ejb.EntityBean {
    public int class_id;
    public String class_name;
    public int institute_id;
    EntityContext ctx=null;
         public Collection ejbFindByAllPrimaryKey(Integer pk)throws FinderException
              Connection con = null;
              try{
                   con = getConnection();
                   PreparedStatement ps=con.prepareStatement("select class_id,class_name from ims_class_mst where institute_id = ?");
                   ps.setInt(1,pk.intValue());
                   ResultSet rs=ps.executeQuery();
                   LinkedList queryMatches=new LinkedList();
                   while(rs.next())
                        StcaKey stcakey=new StcaKey(rs.getString(1),rs.getString(2));
                        queryMatches.add(stcakey);
                   rs.close();
                   ps.close();
                   return queryMatches;
              }catch(SQLException sqle)
                   throw new EJBException(sqle);
              }finally{
                   try{
                        if(con!=null)
                             con.close();
                   }catch(SQLException sqle)
         private Connection getConnection()
              try{
                   Context context = new InitialContext();
                   DataSource datasource = (DataSource) context.lookup("java:comp/env/jdbc/SyllabusDB");
                   return datasource.getConnection();
              }catch(javax.naming.NamingException namingexception)
                   namingexception.printStackTrace();
                   throw new EJBException(namingexception);
              }catch(java.sql.SQLException sqle)
                   sqle.printStackTrace();
                   throw new EJBException(sqle);
    public int getClassId() {
    return class_id;
    public String getClassName() {
    return class_name;
    public void setEntityContext(EntityContext ctx) {
    this.ctx=ctx;
    public void unsetEntityContext() {
    ctx=null;
    public void ejbLoad() {
    // Not implemented.
    public void ejbStore() {
    // Not implemented.
    public void ejbRemove() {
    // Not implemented.
    ==================================================================
    My remote interface is
    public interface Stca extends javax.ejb.EJBObject {
    public int getClassId() throws RemoteException;
    public String getClassName() throws RemoteException;
    ==================================================================
    My primary key class is:
    public class StcaKey implements java.io.Serializable
    public String class_id;
    public String class_name;
    public StcaKey() {}
    public StcaKey(java.lang.String class_id,java.lang.String class_name) {
    this.class_id = class_id;
    this.class_name = class_name;
    public boolean equals(Object obj) {
    if (obj instanceof StcaKey)
    StcaKey otherKey = (StcaKey) obj;
    return ((class_id.equals(otherKey.class_id)) && (class_name.equals(otherKey.class_name)));
    else
    return false;
    public int hashCode() {
    return ((class_id+class_name).hashCode());
    ==================================================================

    Implement Load and Store methods .Data will be persisted.
    -Viren Jasani

  • Orchestration exception:Exception occurred when persisting state to the database because of special character ' ' in HL7 message.

    In some scenarios HL7 message is coming with special character ‘’ and HL7 dis-assembler escaping this character with “”. But while sending out (pass thru pipeline but orchestration trying to persist here at last sendshape.) from orchestration
    this message failing with the error “Exception occurred when persisting state to the database.”
    As per the analysis , Orchestration is unable to convert to xml document from a
    XLANGMessage because of this special character. We have tried to call custom .net class with following code and its failing here as well (I think orchestration also trying to do same way and failing with the message and failing with same error.).
    public void ProcessRequest(XLANGMessage reqMessage)
    XmlDocument xmlDocument = (XmlDocument)reqMessage[0].RetrieveAs(typeof(XmlDocument)); It is failing here with the error
    “ ', hexadecimal value 0x10, is an invalid character. Line 1, position 1865. “
    Note : Please find the special character in the attachment circled in red color. 

    Hi ,
    Please find the xml and the screenshot.
    <OBX_ObservationResult>
      <OBX_1_SetIdObx>3</OBX_1_SetIdObx>
      <OBX_2_ValueType>TX</OBX_2_ValueType>
      <OBX_3_ObservationIdentifier>
        <CE_0_Identifier>P.112</CE_0_Identifier>
        <CE_1_Text>Where pt. will be transported to \T\ where &#x10;&#x1;famly can wait:</CE_1_Text>
      </OBX_3_ObservationIdentifier>
      <OBX_4_ObservationSubId />
      <OBX_5_ObservationValue>Y</OBX_5_ObservationValue>
      <OBX_6_Units>
        <CE_0_Identifier />
      </OBX_6_Units>
      <OBX_7_ReferencesRange />
      <OBX_8_AbnormalFlags />
      <OBX_9_Probability />
      <OBX_10_NatureOfAbnormalTest />
      <OBX_11_ObservationResultStatus>N</OBX_11_ObservationResultStatus>
    </OBX_ObservationResult>

  • My Apple TV states that it cannot complete my purchase, but all my account info is correct, etc.

    My Apple TV states that it cannot complete my purchase (of a movie), and yet all my account info is correct.

    I did more than that - I reset the Apple TV so that I had to get back in as if I were setting it up for the first time.  I actually used my iPad to do this by just touching it the Apple TV with it.  That all worked fine.  I had to verify my password again and my credit card information.  When the Apple rebooted with all of this and I tried to order the same or other movies, the same response came up.
    If Apple doesn't contact me soon, I will simply get the movies from some other service on my smart TV and just use the Apple TV to stream photos or whatever from my iPad or iPhone.  This is ridiculous.
    Thanks again for trying.

  • TS1702 Using Numbers app, can't copy excel spreadsheet into Numbers via an attached email document on gmail.  Apple instructions state that an "open in" tab should be available. Can't locate this command. Only "open in Safari" appears.  Using app on iPad.

    USing Numbers app but can't copy excel spreadsheet attached to a gmail email into Numbers. Apple instruction state that you click on opened document and choose option to open in Numbers. Don't have this option, only an option to open in Safari. I need very complete instructions, I'm pretty new to IPad apps. Thanks!

    THanks, but no go.
    when I open spreadsheet attachment, only option is in lower right hand corner-- a box with arrow. When I touch this icon it gives me a choice to open in Safari or Cancel. No white dots.
    PLs be really basic with your response to me. I thought I am pretty computer literate but this has be baffled.
    THanks. I'm sure there is something "simple" that I'm missing.

  • TS2972 I got a new computer.  Apple TV states "to access your itunes on apple TV, turn on home sharing using..  I have done this. Still does not work

    I got a new computer.  Apple TV states "to access your itunes on apple TV, turn on home sharing using..  I have done this. Still does not work.  Can anyone advise me on why - it was all working great before i switched computers

    You mention doing all of the above, what would that be exactly?
    The article linked above is for airplay, have you checked home sharing tips?
    http://support.apple.com/kb/ts2972

  • My Apple TV states in general menu "Activation: failed". What does that mean and how can I solve the problem?

    My Apple TV states in general menu "Activation: failed". What does that mean and how can I solve the problem?

    Hello MichaMuc,
    I found some steps to help resolve the "Activation: failed" error messsage you are getting on your Apple TV:
    Restart your base station or router. Sometimes this is done by turning the router off for a few seconds, and then on again, but check the documentation provided by the manufacturer.
    To restart your Apple TV, press and hold Menu and Menu down/scroll ( - ) for about 6 seconds and then choose Restart from the menu.
    If the issue continues after restarting, reset your router or base station and Apple TV to factory settings
    Reset your base station or router. Use the documentation provided by the manufacturer to reset to factory settings.
    To reset your Apple TV perform a factory restore.
    You can find the full article here:
    Apple TV: Troubleshooting wireless connections
    http://support.apple.com/kb/ht1595
    Thank you for posting in the Apple Support Communities. 
    Best,
    Sheila M.

  • ADF Mobile: Apple App Store: Encryption Registration Number for Sqlite

    When submitting apps to Apple App Store, you have to declare whether or not your app uses encryption. This is for export compliance reasons. If you answer Yes, you need to provide an Encryption Registration Number (ERN). I assume that since the Sqlite DB in ADF Mobile is encrypted, I need to answer Yes. I've gotten a lot of differing opinions on this, but I'm looking for a definitive answer from either Apple or Oracle. Has anyone been through this already?
    Thanks

    Hi, Mike, here is our response on this question. First thank you for your inquiry around Apple AppStore’s Encryption Export question. The exact question from Apple’s iTunesConnect portal is “Have you added or made changes to encryption features since you last uploaded a binary for this product?”. While we will do our best to suggest an answer based on our understanding of the situation, ultimately any answer that relates to an Apple process or website needs to come from Apple.
    Our understanding of the question is that it pertains to the functionality or features of the application you developed using Oracle ADF Mobile and Apple iOS SDK, not to the capabilities of the development tools nor the framework. Furthermore, the question focus on changes between previous (there may be none) and current version of the application. Therefore, for the following scenarios:
    •     V1– no encrypted database nor secured SSL communication to the backend services.
    o     Based on our understanding of the question, the answer would be “No” as you have not added any encryption feature.
    •     V2 – adds encrypted local database and/or secured SSL communication to backend service
    o     Based on our understanding, the answer would be “Yes” as there are changes in the encryption features
    •     V3 – same database encryption and SSL communication as v2.
    o     Based on our understanding, the answer would be “No” as there is no change in the encryption features between v2 and v3.
    Hope this helps, and please let me know if you have any questions.
    Thanks,
    Joe Huang

  • Sudo command in apple script? Encrypting apple script?

    Hi,
    1. I need a way to enter my root user password in applescript (when you run sudo in terminal you are prompted for a password, this is not so in apple script. So how do you tell apple script what the password is?)
    2. Can i encrypt my applescript with a password so that only i can open it?
    Thanks,
    Patrick.

    # 2 works great, #1 not so much... ive been trying
    tell application "Terminal"
         do shell script "su"
    end script
    any way i can auto enter my password following "do ....Su"?

  • How to persist state of JCheckBox component (Swing)?

    I've been hunting all over the place for a simple way to save the state of a JCheckBox item, so that the next time the program is run the state is restored. My window sizes are restored, and tab selections are remembered, but how do I persist the check box state?
    I haven't been able to find any information on this ... can anyone help?
    Cheers,
    Seumas42

    It would have been handy to mention that the app. already uses the [Swing Application Framework (JSR 296)|https://appframework.dev.java.net/]. The blurb of the framework has a series of feature, one of which is.
    - Support for managing and loading resources, like strings, formatted messages, images, colors, fonts, and other types common to desktop applications.
    So it seems the functionality you want is there, but I have not delved into this API yet, so am unable to advise further, but note that is has a dedicated forum.

  • Tabbed Panel - Persistent State?

    Hi, I'm using a tabbed panel to separate the main subtopics
    for the main page of a website. The only problem I'm having is that
    the panel reverts to the default tab when you leave the page and
    then return. The only exceptions seem to have to do with the
    Browser caching the state temporarily. The tabbed panel samples
    have the same behavior.
    Does anyone know how to fix this problem?
    Thanks
    Tim Howells

    Save the tab number in a cookie and read the cookie on page
    load?
    to get the current tab:
    var varname = tp1.getCurrentTabIndex();
    (tp1 beein the var name of your tabbed panels)
    For the load listener have to include spryDOMUTILS.js
    and u can fire it usin this code
    Spry.Utils.addLoadListener(function(){ save stuff to cookie
    I have also created a onUNLOADlistener (that scripts get
    fired when people leave the page.
    open Spry DOMUtils.js and go to line 262 and this code under
    it.
    (or search for addLoadListener = function(handler)
    Spry.Utils.addUnLoadListener = function(handler)
    if (typeof window.addEventListener != 'undefined')
    window.addEventListener('unload', handler, false);
    else if (typeof document.addEventListener != 'undefined')
    document.addEventListener('unload', handler, false);
    else if (typeof window.attachEvent != 'undefined')
    window.attachEvent('onunload', handler);
    The onUnloadListener can be activated by
    Spry.Utils.addUnLoadListener(function(){ save stuff to cookie
    I also have a Spry.Utils.Cookie handler if u need it. message
    me, Than ill post it.
    I hope this covers your question,

  • TS2446 My apple ID states disabled when I try to make a purchase? Password already reset

    ??? Why does it say apple id has been disabled when I have already changed password and id for new ipad?  Confused...

    You need to contact support:
    http://www.apple.com/support/itunes/ww/
    Enter country and select bottom contact support link on the left on the next page that loads.
    AC

  • Persistent AES encryption decryption

    Hi
    I m using AES actually indirectly throuch the bouncycastle.org's jar files and I have a problem.
    The encryptiona and decryption works fine as long as the virtual machine is not shut down, but when the machine is started fresh then the decryption of strings doesnt return the same results.
    Now is there a way where i can make it persistent across machine shutdowns, because i have a customer DB and I want to kep the names (for ex.) consistent throughtout.
    Any sample code or alternative methods wud be highly appreciated

    Serialize the secret key to the filesystem after it is generated (this would best be done with a separate, small, standalone application). Somehow protect this key. One idea would be to have a password suplied at server startup. Use the password to create a PBE key that would decrypt the secret key. (The one disadvantage to this is that you will not be able to launch the server in a shell script without also storing the password, kind of defeating the point). Once the key is decrypted, read it in from your application for normal use.
    - Saish

  • Keychain adds logins w/o permission

    On restart, my computer adds five login permissions to my keychain (I have been deleting them for I haven't given them permission to be added, and when I click on them, almost no info is given as to why they were added and nothing as to what they do).
    Apple Persistent State Encryption
    Public key: com.apple.ubiquity.peer-uuid.4339BCFA-15E1-439C-A8D2-7C1054D9BC2E
    Private key: com.apple.ubiquity.peer-uuid.4339BCFA-15E1-439C-A8D2-7C1054D9BC2E
    Unauthorized certificate (red "x"): com.apple.ubiquity.peer-uuid.4339BCFA-15E1-439C-A8D2-7C1054D9BC2E
    Unknown certificate: "Unable to display this certifcate. The data does not appear to be a valid certificate" (repeated 3x).
    Why are the Public and Private Keys recognized as valid when the certifcate with the same code name is said to be invalid? Why do these keep appearing even if I delete them? Are they viruses?
    Thanks for your help.

    Thank you Kevin, that does seem to match my symptoms and I have made the change suggested. Just incase that page becomes unreachable by others, here is the part of the page that applies to this:
    Issue:
    =========
    Receive event error 3760 and 6398 on SBS 2008
    Cause:
    ==========
    Issue was caused by incorrect Auto Close option for ShareWebDb database
    Solution:
    ==========
    1. On the SBS 2008 server, click Start -> All Programs -> Microsoft SQL Server 2005, right click SQL Server Management Studio Express and choose run as administrator.
    NOTE: You must run it as administrator to perform steps below.
    2. In the Server Name box, type \\.\pipe\MSSQL$Microsoft##SSEE\sql\query, click connect.
    3. Expand Database node and right click the ShareWebDb then choose properties.
    4. Click Options in the left pane, in the right pane, please check whether the Auto Close option is set to True, if so, please change it to False.

Maybe you are looking for

  • Save Attachments of Activity also on the Customer?

    Hello Friends, Is it possible to store the Attachments of an Activity (created in WebUi) also to the Customer (for whom we create the Activity?) Thanks for helping... PS: I know the function for "helpful answers" here in SDN... (if you create a helpf

  • PC suite for K750

    Does anyone know if it´s possible to install pc suite on a windows 7 computer for the K750 model? It says that it´s only compatible with XP and Vista, but maybe there´s a fix to get around that. Thank you. /Z

  • The left side of the screen cannot be seen

    My firefox screen is not showing its left side. The problem is that it is unusually wider on the right side and this has cut off the left side, and now I cannot see most of the information on the screen.

  • Nokia E71 and Company Email

    Can someone help me with the correct settings for the E71 for me to access my work server: we use a doman for mobile email: mobile.company.com, we have an exchange server which has a name or an IP address. Also we can access using www.company.com/exc

  • Validation for T-code FB50

    Hi, I need to validate the user input for T-Code FB50 at the line item. I've implement the validation rule and created a user exit. However, the validation rule cannot validate the data line by line at the item table because the value BSEG and COBL t