用法:
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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。