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:
parent
aebcbb63fd
commit
33a7e30fc5
1 changed files with 1 additions and 1 deletions
|
@ -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 .
|
||||
|
|
Loading…
Reference in a new issue