Code Monkey home page Code Monkey logo

Comments (6)

hfossli avatar hfossli commented on July 17, 2024

from ellipticcurvekeypair.

MajidAlNuumani avatar MajidAlNuumani commented on July 17, 2024

I am not sure but here is my code:

Singing data code:
private func Signing(dataToBeSigned: String) -> String { do { let digest = dataToBeSigned.data(using: .utf8)! let singedData = try Shared.keypair.sign(digest, hash: .sha256) let signature = singedData.base64EncodedString() return signature } catch { return "Cannot sign data" } }

I call it from this code:
if(call.method == "Register") { guard let args = call.arguments else { return } if let myArgs = args as? [String: Any], let blaBla1 = myArgs["blaBla1"] as? String, let BlaBla2 = myArgs["BlaBla2"] as? String { let signatureBla1 = self?.Signing(dataToBeSigned: blaBla1) let signatureBla2 = self?.Signing(dataToBeSigned: BlaBla2) let publicKey = self?.getPublicKey() var list = [String]() list.append(publicKey!) list.append(signatureBla1!) list.append(signatureBla2!) result(list) } else { result("iOS could not extract flutter arguments in method: (sendParams)") } self?.Register(result: result)

call.method == "Register" is use to call Register Function from Flutter using MethodChannel.

Can you help if this issue happen because of threads?

from ellipticcurvekeypair.

hfossli avatar hfossli commented on July 17, 2024

I would check that all the if let's are valid and unwrapped correctly. I don't understand if this compiles because dataToBeSigned expects Data not String

from ellipticcurvekeypair.

MajidAlNuumani avatar MajidAlNuumani commented on July 17, 2024

Yes but I convert it to Data in Signing function here dataToBeSigned.data(using: .utf8)!

from ellipticcurvekeypair.

MajidAlNuumani avatar MajidAlNuumani commented on July 17, 2024

Hello All,

I got an update in this thread.

I got status error -25300 when call this:

let status = SecItemCopyMatching(query as CFDictionary, &raw)

Any help why this happen in some of iPhone 12 pro and most of iPhone 12 pro max?

from ellipticcurvekeypair.

MajidAlNuumani avatar MajidAlNuumani commented on July 17, 2024

Can any one help in this issue?

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.