mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-05-26 07:08:05 +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]
|
||||
# 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 .
|
||||
|
||||
Reference in New Issue
Block a user