Fixes incorrect rtype in documentation (#802)

rtype for the following was incorrect:
X509Req.from_cryptography
X509.from_cryptography
diff --git a/src/OpenSSL/crypto.py b/src/OpenSSL/crypto.py
index 715e1ae..255ec8f 100644
--- a/src/OpenSSL/crypto.py
+++ b/src/OpenSSL/crypto.py
@@ -902,7 +902,7 @@
         :param crypto_req: A ``cryptography`` X.509 certificate signing request
         :type crypto_req: ``cryptography.x509.CertificateSigningRequest``
 
-        :rtype: PKey
+        :rtype: X509Req
 
         .. versionadded:: 17.1.0
         """
@@ -1115,7 +1115,7 @@
         :param crypto_key: A ``cryptography`` X.509 certificate.
         :type crypto_key: ``cryptography.x509.Certificate``
 
-        :rtype: PKey
+        :rtype: X509
 
         .. versionadded:: 17.1.0
         """