作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 JWT token ,我使用以下方法创建了公共(public)和私有(private) JWT token :
ssh-keygen -t rsa -b 4096
script_dir = os.path.dirname(__file__)
file_path = os.path.join(script_dir, '../../instance/jwt-key.pub')
with open(file_path, 'r') as keys:
jwt_keys = keys.read()
def loginM(email, password):
user_reg = Registration.query.filter_by(email=email).first()
if bcrypt.check_password_hash(user_reg.password, password):
identity = {'first_name': user_reg.first_name, 'exp': time.time() + 1440}
token = jwt.encode(identity, jwt_keys, algorithm='RS256').decode('utf-8')
print(token)
return dict(token=token)
else:
return dict(Unsucessful="Invalid username and password")
'_RSAPublicKey' object has no attribute 'sign'
import jwt
payload = {'mae':'sao'}
key = open('jwt_key').read()
token = jwt.encode(payload, private_key, algorithm='RS256').decode('utf-8')
最佳答案
我不确定这个问题是否仍然有效,但根据 jwt documentation
方法 jwt.encode()
将私钥作为关键参数:
encoded = jwt.encode({'some': 'payload'}, private_key, algorithm='RS256')
但是,您正在从文件中读取公共(public)文件:
file_path = os.path.join(script_dir, '../../instance/jwt-key.pub')
第二个问题是私钥应该是字节类型:
private_key = b'-----BEGIN PRIVAT...'
所以你应该用
b
打开二进制格式的文件旗帜:
with open(file_path, 'rb') as keys:
关于python - “_RSAPublicKey”对象在python中没有属性 'sign',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60124940/
我正在使用 JWT token ,我使用以下方法创建了公共(public)和私有(private) JWT token : ssh-keygen -t rsa -b 4096 在给定路径上成功创建了两
我是一名优秀的程序员,十分优秀!