1 Star 0 Fork 0

tianzongyunliu/callings-manage

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
utils.py 462 Bytes
一键复制 编辑 原始数据 按行查看 历史
fanjingling 提交于 2020-08-23 00:56 . feat: 支持多徽章操作
from flask import jsonify
from hashlib import sha256
def is_valid_param(param):
if None == param or ("" == str(param).strip()):
return False
return True
def show_error(msg):
response = {'code':-1, 'msg':msg, 'data':[]}
return jsonify(response)
def encode_flag(scope, path, funcname):
string = "{} {} {}".format(scope, path, funcname)
x = sha256()
x.update(string.encode())
hexstr = x.hexdigest()
return hexstr[0:26]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tianzongyunliu/callings-manage.git
git@gitee.com:tianzongyunliu/callings-manage.git
tianzongyunliu
callings-manage
callings-manage
master

搜索帮助