在不使用密钥的情况下尽可能多地解析Fernet令牌。
项目描述
这是一个Python库,在不使用密钥的情况下尽可能多地解析Fernet令牌。这对于执行有限的、非加密的验证或Fernet令牌的检查非常有用。
用法
>>> token = 'gAAAAAAdwJ6wAAECAwQFBgcICQoLDA0ODy021cpGVWKZ_eEwCGM4BLLF_5CV9dOPmrhuVUPgJobwOz7JcbmrR64jVmpU4IwqDA=='
>>> import keyless_fernet
>>> t = keyless_fernet.Token(token) # tokens are validated on init
>>> t.validate(ttl=60) # but you can also validate a token against any TTL
>>> t.version # retrieve the token's version, as an integer
128
>>> t.timestamp # retrieve the token's timestamp, as a datetime
datetime.datetime(1985, 10, 26, 8, 20)
>>> t.iv # and see the hex representations of the other attributes
'000102030405060708090a0b0c0d0e0f'
>>> t.ciphertext
'2d36d5ca46556299fde13008633804b2'
>>> t.hmac
'c5ff9095f5d38f9ab86e5543e02686f03b3ec971b9ab47ae23566a54e08c2a0c'
测试
不需要外部测试依赖项
$ python -m unittest discover
项目详情
关闭
keyless_fernet-1.0.0.tar.gz的哈希值
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 18bb3033bbf14d891fd36c84045df16994097456dfe41e365a5448dfc581c3e0 |
|
MD5 | d60149531797460ce9f4095766ccd6bf |
|
BLAKE2b-256 | 6013dfe56344c8a96cadad33ac482b5585e4656edf2f51926fe06ef95f9739f5 |