Giter VIP home page Giter VIP logo

Comments (5)

winzig avatar winzig commented on July 2, 2024

Specifically the code that is crashing went from:

if let myArray = Lockbox.arrayForKey("MyArray") as? [String] {

to:

if let myArray = Lockbox.unarchiveObjectForKey("MyArray") as? [String] {

The value was originally stored in the app in the previous version using:

Lockbox.setArray(myArray, forKey: "MyArray", accessibility: kSecAttrAccessibleAfterFirstUnlock)

from lockbox.

granoff avatar granoff commented on July 2, 2024

There is no automatic migration from the old setXxx methods to the new archive/unarchive methods. In fact, that would be nearly impossible as there is no way to know what you stored for any given key. I will update the README with some guidance.

To migrate, you would need to fetch your data using the now deprecated type-specific methods, and then store them again using the new archiveObjectForKey: method.

I can imagine that you might do this at launch, one time, for all your Lockbox data stored using the old methods. Then make a note by storing another key, either via Lockbox or in User Defaults or somewhere else, that you've done this migration in your app. So on subsequent launches, you wouldn't have to do the migration again. In fact, that would be redundant and probably mess up your data.

Sorry for the inconvenience.

from lockbox.

winzig avatar winzig commented on July 2, 2024

Is the benefit in moving to this just reduced complexity for new code? It seems like for existing apps it may be better to just continue with the older version, rather than adding migration code to our codebase for all time. But maybe I'm not fully understanding the benefits.

from lockbox.

granoff avatar granoff commented on July 2, 2024

The original implementation (all the type-specific setXxx methods) is limited, it turns out, if you want to store a complex object. For example, an array of strings can be stored and retrieved easily enough. But an array of arrays not so much; the retrieved array's contents were not arrays.

The new model stores opaque data from a keyed archive, relying on each core object to serialize and de-serialize itself on its way into and out of a keyed archive, respectively. So this allows you to store any complex object provided the object (and any contained objects) conform to NSSecureCoding. It is more robust, and removes the burden of worrying about data types from Lockbox.

from lockbox.

winzig avatar winzig commented on July 2, 2024

OK, great, thank you!

from lockbox.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.