1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-12-24 15:15:22 +00:00

convert decodestring -> decodebytes for python 3.10 compatibility

This commit is contained in:
catborise 2022-08-22 16:14:22 +03:00
parent aebcbb63fd
commit 33a7e30fc5

View file

@ -30,7 +30,7 @@ def validate_ssh_key(key):
username = array[2]
# must have only valid rsa-ssh key characters ie binascii characters
try:
data = base64.decodestring(string)
data = base64.decodebytes(string)
except binascii.Error:
return False
# unpack the contents of data, from data[:4] , property of ssh key .