We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ecc312 commit ac5d580Copy full SHA for ac5d580
oclp_r/encry/as1/based.py
@@ -58,7 +58,7 @@ def decry(self,data):
58
try:
59
if not isinstance(data, bytes):
60
raise TypeError("Panic:This type is not bytes.")
61
- self.encry = .b64decode(data)
+ self.encry = base64.b64decode(data)
62
63
return self.encry
64
except Exception as e:
0 commit comments