Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 10 for CERT (0.014 sec.)
- 18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 14266
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...クラスは、接続の相手側からの証明書を取得する getpeercert() メソッドや、セキュア接続で使うための暗号方式を取...¶ エラーが起こった原因を示すニーモニック文字列で、 CERTIFICATE_VERIFY_FAILED などです。取り得る値は OpenSS...はありません。 バージョン 3.3 で追加. exception ssl. CertificateError ¶ (ホスト名のミスマッチのような)証明書...使えます。 ssl. wrap_socket ( sock , keyfile=None , certfile=None , server_side=False , cert_reqs=CERT_NONE... - https://man.plustar.jp/python/library/ssl.html - [similar]
- 21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 8759
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...TPSConnection ( host , port=None , key_file=None , cert_file=None , [ timeout , ] source_address=None , *...とで出来ます。 バージョン 3.6 で非推奨: key_file and cert_file are deprecated in favor of context . Please u...se ssl.SSLContext.load_cert_chain() instead, or let ssl.create_default_context...() select the system's trusted CA certificates for you. The check_hostname parameter is a... - https://man.plustar.jp/python/library/http.client.html - [similar]
- 21.14. poplib --- POP3 プロトコルクライアント — Python 3.6.5 ドキュメント 8366
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...3_SSL ( host , port=POP3_SSL_PORT , keyfile=None , certfile=None , timeout=None , context=None ) ¶ POP3 ク...リティで考慮すべき点 を参照してください。 keyfile と certfile は context のレガシー版です - これらは、SSL 接...鍵と証明書チェーンファイル名(前者が keyfile 、後者が certfile )を含むことができます。 バージョン 3.2 で変更:...してください)。 バージョン 3.6 で非推奨: keyfile and certfile are deprecated in favor of context . Please us... - https://man.plustar.jp/python/library/poplib.html - [similar]
- 21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 8295
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...' , user='' , passwd='' , acct='' , keyfile=None , certfile=None , context=None , timeout=None , source_ad...ュリティで考慮すべき点 をお読みください。 keyfile と certfile は context のレガシー版です -- これらは、SSL 接...鍵と証明書チェーンファイル名(前者が keyfile 、後者が certfile )を含むことができます。 バージョン 3.2 で追加....してください)。 バージョン 3.6 で非推奨: keyfile and certfile are deprecated in favor of context . Please us... - https://man.plustar.jp/python/library/ftplib.html - [similar]
- 21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 8295
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...L ( host='' , port=IMAP4_SSL_PORT , keyfile=None , certfile=None , ssl_context=None ) ¶ This is a subclass...t which allows bundling SSL configuration options, certificates and private keys into a single (potentiall...リティで考慮すべき点 for best practices. keyfile and certfile are a legacy alternative to ssl_context - they...can point to PEM-formatted private key and certificate chain files for the SSL connection. Note th... - https://man.plustar.jp/python/library/imaplib.html - [similar]
- 21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 8295
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...'' , port=0 , local_hostname=None , keyfile=None , certfile=None , [ timeout , ] context=None , source_add...リティで考慮すべき点 for best practices. keyfile and certfile are a legacy alternative to context , and can...point to a PEM formatted private key and certificate chain file for the SSL connection. バージョ...してください)。 バージョン 3.6 で非推奨: keyfile and certfile are deprecated in favor of context . Please us... - https://man.plustar.jp/python/library/smtplib.html - [similar]
- 21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 8295
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...favor of context . Please use ssl.SSLContext.load_cert_chain() instead, or let ssl.create_default_context...() select the system's trusted CA certificates for you. urllib.request. install_opener (...われることがあります。キーワード引数 key_file および cert_file が SSL 鍵と証明書を設定するためにサポートされ... - https://man.plustar.jp/python/library/urllib.request.html - [similar]
- What's New In Python 3.5 — Python 3.6.5 ドキュメント 8295
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...(Contributed by Nikolaus Rath in bpo-20951 .) The cert_time_to_seconds() function now interprets the inpu...ポートするようになりました。 RFC 5280 に基づき、 ssl.cert_time_to_seconds() 関数が入力の時刻をローカル時刻で... - https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
- What's New In Python 3.4 — Python 3.6.5 ドキュメント 8241
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...( ssl.match_hostname() ) と証明書失効リスト (CRLs=certification revocation lists。 ssl.SSLContext.load_ve...n Heimes in bpo-18143 .) SSLContext の新規メソッド cert_store_stats() はロードされた X.509 証明書、 X.509...効リスト ( crl ) を報告し、また、新規メソッド get_ca_certs() はロードされた CA 証明書のリストを返します。(Co...bpo-8813 .) SSLContext の新規メソッド load_default_certs() は、プラットフォームによって異なるデフォルトの場... - https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
- What's New In Python 3.3 — Python 3.6.5 ドキュメント 8170
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...Contributed by Antoine Pitrou in bpo-11183 .) load_cert_chain() が password 引数を受け付けるようになりまし...buted by Antoine Pitrou in bpo-14837 .) get_server_certificate() 関数が IPv6 をサポートするようになりました... - https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
PREV
1
NEXT
