Browse Source
Serialized certificates loaded as X509Certificate2
Instances of X509Certificate2 passed into an MqttClientOptionsBuilder lose data and functionality by being loaded as an X509Certificate.
release/3.x.x
cvellan
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
Frameworks/MQTTnet.NetStandard/Implementations/MqttTcpChannel.cs
|
|
@@ -130,7 +130,7 @@ namespace MQTTnet.Implementations |
|
|
|
|
|
|
|
foreach (var certificate in options.TlsOptions.Certificates) |
|
|
|
{ |
|
|
|
certificates.Add(new X509Certificate(certificate)); |
|
|
|
certificates.Add(new X509Certificate2(certificate)); |
|
|
|
} |
|
|
|
|
|
|
|
return certificates; |
|
|
@@ -155,4 +155,4 @@ namespace MQTTnet.Implementations |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
#endif |
|
|
|
#endif |