Skip to content
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

Remove EGD #187

Closed
wants to merge 1 commit into from
Closed

Remove EGD #187

wants to merge 1 commit into from

Conversation

Sp1l
Copy link

@Sp1l Sp1l commented Jan 20, 2015

EGD was only necessary for some commercial UNIX systems, versions that needed it all reached end of life.
EGD needed until OS release date
IRIX 6.5.19 feb 2003
Solaris 2.6 jul 1997
AIX 5.2 oct 2002
Tru64 5.1B sep 2002
HP-UX 11i v2 sep 2003
https://en.wikipedia.org/wiki//dev/random#EGD_as_an_alternative

EGD was only necessary for some commercial UNIX systems, versions that
needed
it all reached end of life.
EGD needed until        OS release date
IRIX 6.5.19   feb 2003
Solaris 2.6                     jul 1997
AIX     5.2                     oct 2002
Tru64   5.1B                    sep 2002
HP-UX   11i v2                  sep 2003
https://en.wikipedia.org/wiki//dev/random#EGD_as_an_alternative
@coveralls
Copy link

Coverage Status

Coverage decreased (-0.03%) when pulling 1f388b8 on Sp1l:master into 496f40d on pyca:master.

@public
Copy link
Member

public commented Jan 20, 2015

I think you might need to delete more stuff to keep coverage up?

@alex
Copy link
Member

alex commented Jan 20, 2015

Just deleting this seems like a backwards compatibility issue; I think it needs to be deprecated (even though EGD is toatlly stupid)

@Sp1l
Copy link
Author

Sp1l commented Jan 20, 2015

@alex If anyone still wants to run pyopenssl on the platforms mentioned in the pull request they have an immense number of other compatibility issues. I expect they'll be needing to run all kinds of ancient versions of Python/OpenSSL/pyOpenSSL/py-cryptography in line with their museum-worthy hardware and OS. Even Windows has a proper source of random for many years now.

@exarkun
Copy link
Member

exarkun commented Jan 20, 2015

Thanks, Sp1l. I had no idea EGD was this obsolete.

Nevertheless, this change could break working programs using pyOpenSSL. Consider a program that just does:

from OpenSSL.rand import egd

and never proceeds to use egd. Clearly this is easily fixed by the maintainer of the program (just delete the import). However, if we release a version of pyOpenSSL that simply removes egd then end-users may install it and use it with programs the maintainers of which haven't even had a chance to learn that this API has been removed. An easy fix for a maintainer can be a total mystery to an end-user. I'd prefer not to introduce this sort of failure for users of pyOpenSSL-using software.

The thing to do here is deprecate the APIs being removed (by emitting warnings, probably), release a version of pyOpenSSL that includes those deprecations, wait a while, then remove the deprecated APIs.

@exarkun exarkun closed this Jan 20, 2015
@Sp1l
Copy link
Author

Sp1l commented Jan 20, 2015

@exarkun If you give me an example of how you mark features as deprecated I'll get you an updated patch marking deprecation.
Be warned that Python 2.7/3.x from the next patch version onwards will conditionally use EGD and thus will come without EGD support completely if the host's OpenSSL does not have EGD (e.g. users of LibreSSL). Any code importing EGD will break anyway as a result of that!
See python/cpython@e3ec962

@exarkun
Copy link
Member

exarkun commented Jan 20, 2015

Be warned that Python 2.7/3.x from the next patch version onwards will conditionally use EGD and thus will come without EGD support completely. Any code importing EGD will break anyway as a result of that!

I'm not sure I follow this. pyOpenSSL's EGD is totally distinct from any Python standard library EGD support. I don't think changes to one will make any difference to users of the other.

@exarkun If you give me an example of how you mark features as deprecated I'll get you an updated patch marking deprecation.

This deprecation from Twisted demonstrates one approach - http://twistedmatrix.com/trac/browser/trunk/twisted/web/server.py#L69

Unfortunately it depends on a deprecation API provided by Twisted (as the standard library doesn't do much to help with the deprecation process). I wouldn't mind if the helper was copied from Twisted into pyOpenSSL's util module (with proper attribution, etc).

Thanks again.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Aug 23, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants