mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-06-10 06:14:37 +00:00
convert decodestring -> decodebytes for python 3.10 compatibility
This commit is contained in:
@@ -30,7 +30,7 @@ def validate_ssh_key(key):
|
|||||||
username = array[2]
|
username = array[2]
|
||||||
# must have only valid rsa-ssh key characters ie binascii characters
|
# must have only valid rsa-ssh key characters ie binascii characters
|
||||||
try:
|
try:
|
||||||
data = base64.decodestring(string)
|
data = base64.decodebytes(string)
|
||||||
except binascii.Error:
|
except binascii.Error:
|
||||||
return False
|
return False
|
||||||
# unpack the contents of data, from data[:4] , property of ssh key .
|
# unpack the contents of data, from data[:4] , property of ssh key .
|
||||||
|
|||||||
Reference in New Issue
Block a user