Closed tadeck closed 11 years ago
There was one report of some service returning lowercase secret, so when provided to the library, there was an issue (base64.b32decode accepts only uppercase letters).
base64.b32decode
This can be solved by setting casefold argument of base64.b32decode to True.
casefold
True
There was one report of some service returning lowercase secret, so when provided to the library, there was an issue (
base64.b32decode
accepts only uppercase letters).This can be solved by setting
casefold
argument ofbase64.b32decode
toTrue
.