用法:
ssl.cert_time_to_seconds(cert_time)
給定
cert_time
字符串,表示"%b %d %H:%M:%S %Y %Z"
strptime 格式(C 語言環境)證書中的 “notBefore” 或 “notAfter” 日期,以秒為單位返回時間。這是一個例子:
>>> import ssl >>> timestamp = ssl.cert_time_to_seconds("Jan 5 09:34:43 2018 GMT") >>> timestamp 1515144883 >>> from datetime import datetime >>> print(datetime.utcfromtimestamp(timestamp)) 2018-01-05 09:34:43
“notBefore” 或 “notAfter” 日期必須使用 GMT(RFC 5280)。
在 3.5 版中更改:將輸入時間解釋為輸入字符串中“GMT”時區指定的 UTC 時間。以前使用本地時區。返回一個整數(輸入格式中沒有秒的小數部分)
相關用法
- Python ssl.SSLContext.check_hostname用法及代碼示例
- Python ssl.match_hostname用法及代碼示例
- Python ssl.OPENSSL_VERSION_NUMBER用法及代碼示例
- Python ssl.SSLContext.session_stats用法及代碼示例
- Python ssl.enum_certificates用法及代碼示例
- Python ssl.SSLSocket.getpeercert用法及代碼示例
- Python ssl.SSLContext.get_ciphers用法及代碼示例
- Python sklearn.cluster.MiniBatchKMeans用法及代碼示例
- Python scipy.ndimage.binary_opening用法及代碼示例
- Python scipy.signal.windows.tukey用法及代碼示例
- Python scipy.stats.mood用法及代碼示例
- Python str.isidentifier用法及代碼示例
- Python sklearn.metrics.fbeta_score用法及代碼示例
- Python scipy.fft.ihfftn用法及代碼示例
- Python scipy.stats.normaltest用法及代碼示例
- Python scipy.ndimage.convolve1d用法及代碼示例
- Python scipy.stats.arcsine用法及代碼示例
- Python scipy.interpolate.UnivariateSpline.antiderivative用法及代碼示例
- Python scipy.linalg.hadamard用法及代碼示例
- Python socket.create_server用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 ssl.cert_time_to_seconds。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。