You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
base32ct: avoid panics when decoding inputs; enforce lengths (#2084)
Formerly, Encoding::decode would write beyond the end of `dst`
when the input (ignoring padding) had (length%8) == 1, 3, or 6.
These lengths are not valid base32, so we now reject them.
0 commit comments