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
parent
commit
f974dcb647
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Frameworks/MQTTnet.NetStandard/Implementations/MqttTcpChannel.cs

+ 2
- 2
Frameworks/MQTTnet.NetStandard/Implementations/MqttTcpChannel.cs View File

@@ -130,7 +130,7 @@ namespace MQTTnet.Implementations


foreach (var certificate in options.TlsOptions.Certificates) foreach (var certificate in options.TlsOptions.Certificates)
{ {
certificates.Add(new X509Certificate(certificate));
certificates.Add(new X509Certificate2(certificate));
} }


return certificates; return certificates;
@@ -155,4 +155,4 @@ namespace MQTTnet.Implementations


} }
} }
#endif
#endif

Loading…
Cancel
Save