Browse Source

note issue w/ broken cryptography module...

main
John-Mark Gurney 8 months ago
parent
commit
6dae52fa49
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      README.md

+ 11
- 0
README.md View File

@@ -141,6 +141,17 @@ Known Issues
- Possible memory leak for each connection
Error message is: Task exception was never retrieved
See the commented out assertion at the end of test_clientkeymismatch
- cryptography may install broken. If you get the error message:
```
RuntimeError: OpenSSL 3.0's legacy provider failed to load. This is a fatal error by default, but cryptography supports running without legacy algorithms by setting the environment variable CRYPTOGRAPHY_OPENSSL_NO_LEGACY. If you did not expect this error, you have likely made a mistake with your OpenSSL configuration.
```
Run the following:
```
pip uninstall cryptography
export CRYPTOGRAPHY_OPENSSL_NO_LEGACY=1
pip install cryptography
```
and try again.

TODO/Future Features
--------------------


Loading…
Cancel
Save