Home
last modified time | relevance | path

Searched refs:PKey (Results 1 – 8 of 8) sorted by relevance

/external/python/pyopenssl/tests/
Dtest_crypto.py24 from OpenSSL.crypto import TYPE_RSA, TYPE_DSA, Error, PKey
794 pkey = PKey()
1023 pkey = PKey.from_cryptography_key(key)
1025 assert isinstance(pkey, PKey)
1035 pkey = PKey.from_cryptography_key(key)
1037 assert isinstance(pkey, PKey)
1050 PKey.from_cryptography_key(key)
1076 assert is_consistent_type(PKey, "PKey")
1082 key = PKey()
1083 assert isinstance(key, PKey)
[all …]
Dtest_ssl.py46 from OpenSSL.crypto import PKey, X509, X509Extension, X509Store
251 cakey = PKey()
265 ikey = PKey()
279 skey = PKey()
611 key = PKey()
632 key = PKey()
870 key = PKey()
/external/python/pyopenssl/src/OpenSSL/
Dcrypto.py223 class PKey(object): class
936 pkey = PKey.__new__(PKey)
1073 if not isinstance(pkey, PKey):
1167 pkey = PKey.__new__(PKey)
1184 if not isinstance(pkey, PKey):
1202 if not isinstance(pkey, PKey):
2027 if not isinstance(pkey, PKey):
2430 if not isinstance(key, PKey):
2562 if not isinstance(pkey, PKey):
2764 pkey = PKey.__new__(PKey)
[all …]
DSSL.py27 PKey,
921 if not isinstance(pkey, PKey):
/external/python/pyopenssl/doc/api/
Dcrypto.rst13 …o_cryptography`` and ``from_cryptography`` methods on ``X509``, ``X509Req``, ``CRL``, and ``PKey``.
156 PKey objects
159 .. autoclass:: PKey
/external/python/pyopenssl/
DCONTRIBUTING.rst52 :param PKey pkey: The PKey to dump.
DCHANGELOG.rst401 - ``OpenSSL.crypto.PKey`` can now be constructed from ``cryptography`` objects and also exported as…
452 - Added ``OpenSSL.crypto.dump_publickey()`` to dump ``OpenSSL.crypto.PKey`` objects that represent …
/external/python/pyopenssl/doc/
DChangeLog_old.txt159 PKey instance which has no private component, instead of crashing.
194 * OpenSSL/crypto/pkey.c: Add the PKey.check method, mostly
196 PKey instance.
807 PKey)