Playing around with conversions in base64 with Python but I have hit a roadblock with trying to convert b64 to decimal.
The following code is suggested on stackoverflow previously but doesn't seem to work for me.
I looked up the error and it appears that this means it can't decode b6 because it is already decoded...
b6 = 'FhY='
print(' '.join([ str(ord(c)) for c in b6.decode('base64') ]))
#expectedoutput = 22 22
#'str' object has no attribute 'decode'