Switch SHA512 implementation to use the one from hashlib

CURA-5744
This commit is contained in:
Jaime van Kessel 2018-09-27 11:37:44 +02:00
parent 506ec5109d
commit 0ccbabd857

View File

@ -2,7 +2,7 @@
# Cura is released under the terms of the LGPLv3 or higher.
import json
import random
from _sha512 import sha512
from hashlib import sha512
from base64 import b64encode
from typing import Optional