We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
NetMQCertificate
E.g. https://github.com/zeromq/netmq/blob/master/src/NetMQ.Tests/CurveTests.cs
Excerpt from test:
var serverPair = new NetMQCertificate(); using var server = new DealerSocket(); server.Options.CurveServer = true; server.Options.CurveCertificate = serverPair; server.Bind($"tcp://127.0.0.1:55367"); var clientPair = new NetMQCertificate(); using var client = new DealerSocket(); client.Options.CurveServerKey = serverPair.PublicKey; client.Options.CurveCertificate = clientPair; client.Connect("tcp://127.0.0.1:55367");
The text was updated successfully, but these errors were encountered:
No branches or pull requests
E.g. https://github.com/zeromq/netmq/blob/master/src/NetMQ.Tests/CurveTests.cs
Excerpt from test:
The text was updated successfully, but these errors were encountered: