Code Monkey home page Code Monkey logo

Comments (4)

MelnykovDenys avatar MelnykovDenys commented on July 17, 2024 1

I want to connection mqtt by pem file ,but I can not connect broker.

👇🏻👇🏻 There are my some sample code:

let cliendId = "xxxxxxxxxxxxxxxx" mqtt5 = CocoaMQTT5(clientID: cliendId, host: defaultHost, port: UInt16(port)) mqtt5?.logLevel = .debug mqtt5?.username = userName mqtt5?.password = password mqtt5?.keepAlive = 60 mqtt5?.delegate = self mqtt5?.autoReconnect = true mqtt5?.cleanSession = true mqtt5?.delegateQueue = .global(qos:.utility) mqtt5?.backgroundOnSocket = true mqtt5?.allowUntrustCACertificate = true mqtt5?.enableSSL = true guard let cert_Url = Bundle.main.url(forResource: "bundle", withExtension: "pem") else { return } guard let cert_data = try? Data(contentsOf: cert_Url) as? CFData else { return } let cert = SecCertificateCreateWithData(kCFAllocatorDefault, cert_data) var sslSettings: [String: NSObject] = [:] sslSettings[kCFStreamSSLCertificates as String] = [cert] as NSObject mqtt5?.sslSettings = sslSettings mqtt5?.connect()

This is error: Error Domain=MGCDAsyncSocketErrorDomain Code=8 "Error in SSLSetCertificate" UserInfo={NSLocalizedDescription=Error in SSLSetCertificate

Hey @wtdu !
I think It's because your cert == nil. I faced the same issue

from cocoamqtt.

wtdu avatar wtdu commented on July 17, 2024

@MelnykovDenys
thanks,you are right !I printed the mqtt5. sslSettings parameter, gave me nil value .
Now, do you have any new breakthroughs?

from cocoamqtt.

MelnykovDenys avatar MelnykovDenys commented on July 17, 2024

@wtdu
Unfortunately no, I’m observing this thread also #546 . If I find solution, I’ll write you

from cocoamqtt.

JaylinYu avatar JaylinYu commented on July 17, 2024

This is an MQTT SDK, and TLS/SSL belongs to TCP transport. CocoaMQTT just a user of TLS lib. Feel free to learn how to convert your certificates.

from cocoamqtt.

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.