-
-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is X509 certificates authentication supported? #167
Comments
You can use X509 certificates. Here is some documentation related to using them with AWS https://swift-server-community.github.io/mqtt-nio/documentation/mqttnio/mqttnio-aws |
thanks for sharing the document. Is there any sample codes using X.509 certificate for authentication? The sample codes in the document only uses AWS Signature V4. I'd like to see how I can setup the cert and key file with the MQTT client. |
Found this document: https://swift-server-community.github.io/mqtt-nio/documentation/mqttnio/mqttnio-connections. will have a try to see if that works with Azure event grid MQTT broker |
I'm setting up the client with these codes and I get an exception when loading the client certificate:
The exception is thrown at this line within TSTLSConfiguration.Identity.p12: I generated p12 file without a password, so I pass empty string. Also tried to generate the p12 file with a password and still get the same error. I created the p12 file on Windows wsl with this command: sample_client3.pem sample_client3.key are generated using a self-signed root ca: Create self signed ca: Did some debugging, SecPKCS12Import returns -26275, which means "Unable to decode the provided data" (error message provided by SecCopyErrorMessageString) |
There is a script in the project for generating certificates |
thanks for the pointer. I tried to use that script to generate all certificates, but I get this error when connecting to my MQTT broker on iOS client: Trust failed: “DigiCert Global Root G3” certificate is not trusted Looks like I need to install/trust the self signed ca on iOS device. However even I manually installed ca cert and enable trust on iOS device, I still get this error. My ca root cert doesn't have "DigiCert Global Root G3" in CN. openssl x509 -in ./../mosquitto/certs/ca.pem -text -noout
I manually download/installed that CA from https://www.digicert.com/kb/digicert-root-certificates.htm on iOS device, but still getting same error. client cert:
|
I fixed a cert import issue on iOS 17 and lower: https://github.com/liumiaojq/mqtt-nio/pull/1/files. With all these changes, I'm still running into the same error even I manually installed and trusted this cert: “DigiCert Global Root G3”. ![]() Trust failed: “DigiCert Global Root G3” certificate is not trusted |
I'm not really that experienced in the certificate generation and have never used step. Looking at what's needed to setup the CA and then the client it looks slightly different from my script. You need a CA and an intermediary CA, then create your client key from the intermediary CA. The script doesn't create an intermediary key. One thing I do know is Network.framework is particularly fussy about certificates. Certificates that worked using NIOSSL failed when using Network.framework. I had to setup a openssl.cnf with additional setup for the keys. I'm not sure if this is required for you |
Yes you are correct that instructions are slightly different. I'm using the CA generated with your script (with my changes) as the intermediate CA and upload it to the server. I think that's equivalent? |
I'm trying to generate the root and intermediate CA using step certificate for broker, and use the intermediate CA to sign client certificate generated by openssl to work around the cert import issue on iOS. However I'm still running into the same error. I summarized all my changes and process in this PR: liumiaojq/EmCuTeeTee#1 |
Attach cert dump for new intermediate and client certs: openssl x509 -in sample_client10.pem -text -noout |
I tried to run sample app on a real iPhone and the certificate validation errors are gone in debug logs. I get this error in sample app: liumiaojq/EmCuTeeTee#1 Failed to connect I did some debugging, the most inner exception is thrown here: ![]() @adam-fowler Can you provide some tips how to debug this? |
A timeout implies it can't see your server. Is there any reason this would be the case? |
@adam-fowler For some reason I started to see this error on real iPhone as well: After doing some debugging, this error is printed here, after calling SecTrustEvaluateAsyncWithError: ![]() However if you see my steps to generate/sign the client cert (in liumiaojq/EmCuTeeTee#1), I didn't use that root CA at all so it's quite confusing why that API complains about it. I'm going to post this question to apple developer forum and please help share your insight as well. |
I don't know enough about certificates to answer your questions confidently you are probably better asking elsewhere. |
I'd like to use this library to connect a MQTT broker running in Azure event grid. In their sample: https://github.com/Azure-Samples/MqttApplicationSamples, we need to setup X509 certificates on both broker and clients for authentication. However it's unclear if this type of authentication is supported or not in this library. In the sample app using this library, I see authentication is done with a user name/password instead of a X509 certificate.
The text was updated successfully, but these errors were encountered: