Code Monkey home page Code Monkey logo

Comments (17)

hfossli avatar hfossli commented on July 17, 2024 1

Allright. This is now published and available on cocoapods, carthage and on master on this repo! Thanks again.

from ellipticcurvekeypair.

hfossli avatar hfossli commented on July 17, 2024

Thank you for using this library and reporting this issue. I'll have a look.

from ellipticcurvekeypair.

hfossli avatar hfossli commented on July 17, 2024

Okay, so basically what you are saying is if we don't provide any kSecAttrAccessControl when saving the key it will default to class 6 (kSecAttrAccessibleWhenUnlocked)?

from ellipticcurvekeypair.

badlands avatar badlands commented on July 17, 2024

from ellipticcurvekeypair.

hfossli avatar hfossli commented on July 17, 2024

Allright, we've got two choices then. Either have an opinionated logic where we use the same access control for both private and public key.. Or we provide some api.

  1. What you suggested (same for both)

or

  1. Change init for Config object
        public init(publicLabel: String,
                    privateLabel: String,
                    operationPrompt: String?,
                    publicKeyAccessControl: SecAccessControl,
                    privateKeyAccessControl: SecAccessControl,
                    fallbackToKeychainIfSecureEnclaveIsNotAvailable: Bool)

from ellipticcurvekeypair.

hfossli avatar hfossli commented on July 17, 2024

I'm leaning towards second alternative

from ellipticcurvekeypair.

badlands avatar badlands commented on July 17, 2024

from ellipticcurvekeypair.

hfossli avatar hfossli commented on July 17, 2024

Did you otherwise find this library easy to use?

from ellipticcurvekeypair.

badlands avatar badlands commented on July 17, 2024

from ellipticcurvekeypair.

hfossli avatar hfossli commented on July 17, 2024

Can you try the branch frameworks? On that branch I have support for Carthage and Cocoapods as well if you rather use that. :)

Please note that the API changed slightly to this (delaying try on access control to a later point in time):

    struct Shared {
        static let keypair: EllipticCurveKeyPair.Manager = {
            let accessControl = EllipticCurveKeyPair.AccessControl(protection: kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly, flags: [.userPresence, .privateKeyUsage])
            let config = EllipticCurveKeyPair.Config(
                publicLabel: "no.agens.encrypt.public",
                privateLabel: "no.agens.encrypt.private",
                operationPrompt: "Decrypt",
                publicKeyAccessControl: accessControl,
                privateKeyAccessControl: accessControl,
                fallbackToKeychainIfSecureEnclaveIsNotAvailable: true)
            return EllipticCurveKeyPair.Manager(config: config)
        }()
    }

from ellipticcurvekeypair.

badlands avatar badlands commented on July 17, 2024

from ellipticcurvekeypair.

hfossli avatar hfossli commented on July 17, 2024

Me too 😆 enjoy 👋

from ellipticcurvekeypair.

hfossli avatar hfossli commented on July 17, 2024

If you are using cocoapods it should be as easy as adding the following to your Podfile:

  pod 'EllipticCurveKeyPair', :git => 'https://github.com/agens-no/EllipticCurveKeyPair.git', :branch => 'frameworks'

from ellipticcurvekeypair.

hfossli avatar hfossli commented on July 17, 2024

Were you able to test this? :)

from ellipticcurvekeypair.

badlands avatar badlands commented on July 17, 2024

from ellipticcurvekeypair.

hfossli avatar hfossli commented on July 17, 2024

Awesome. Good to hear. Closing this issue once it is published on master and tagged.

from ellipticcurvekeypair.

hfossli avatar hfossli commented on July 17, 2024

Thank you for reporting this! <3

from ellipticcurvekeypair.

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.