Fix base64 encodings

This commit is contained in:
Magnus Hagander
2019-01-19 20:03:33 +01:00
parent 9b42500478
commit edad84b1d0
3 changed files with 11 additions and 11 deletions

View File

@ -16,4 +16,4 @@ if __name__ == "__main__":
r = Random.new()
key = r.read(32)
print base64.b64encode(key)
print(base64.b64encode(key))