我正在尝试在Django数据库中以十六进制格式保存长文本。 这是一些秘密密钥。 另外在某些时候我想再次将它们转换为文本。
def import_keys(request):
if request.method == "POST":
secrets = request.POST['text_file']
some = secrets.encode("hex")
Keys.objects.create(hexa=some)
答案 0 :(得分:0)
编码::
text = "hello"
text.encode("hex")
解码::
hexcode = <hex value>
hexcode.decode("hex")
我希望这会有所帮助。 :)