-
Notifications
You must be signed in to change notification settings - Fork 28
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
add optional SSL
support
#46
base: master
Are you sure you want to change the base?
Conversation
Needs documentation (docstring update). |
Many things missing, e.g.
|
You could do the protocols one by one if you prefer, and then we merge those PRs to a separate branch first. |
98e30d6
to
2bdae90
Compare
This doesn't authenticate the client, does it? |
I think you can add a client certificate (with different SSL API calls), or just a password. |
12ac4f4
to
2a7f45f
Compare
2a7f45f
to
4e1e835
Compare
4e1e835
to
ea5c140
Compare
01b8a9b
to
800e8a8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All this limits the server to connecting to only one client, no? Is that a limitation we're accepting? If so, it should probably be documented.
Yeah I'm not convinced of this certificate setup with IP addresses in them. We do want to allow several clients on one server, but I suppose they could share the same client certificate (if this IP address business doesn't get in the way). |
If they don't share an IP address and |
This still needs some certificates, no? |
Yes, but it no longer matters what certificate, or who they're signed by. At that point it's just a way to trade public keys. |
Then what prevents a MITM attack that intercepts the password? |
Hmm, nothing. Nevermind. |
Sounds like we should try to go for shared client certificates (created without IP address/hostname fields) and |
Based on the previous discussion, this is the simplest solution. Otherwise, a full private CA setup is an option, but it wouldn't be user-friendly. |
Add |
345c84b
to
1c20eae
Compare
Signed-off-by: Florian Agbuya <[email protected]>
Description
Add optional SSL/TLS support with mutual authentication. SSL is enabled when certificate files are provided.
AsyncioServer
requiring both server and client certificatesClient
,AsyncioClient
, andBestEffortClient
classes to support mutual SSL authenticationsimple_server_loop
to handle certificate verificationsipyco_rpctool
(--cert, --key, --cafile)Related issue:
m-labs/artiq#2577