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
If PEM data passed to pem.Decode() includes data after the -----END FOO----- trailer on the same line, it quietly ignores it.
The fix for the related #16335 took care of too few dashes and of the type not matching, but did not handle extra trailing data (like an extra dash). OpenSSL's PEM library refuses to open this data.
The text was updated successfully, but these errors were encountered:
If PEM data passed to
pem.Decode()
includes data after the-----END FOO-----
trailer on the same line, it quietly ignores it.The fix for the related #16335 took care of too few dashes and of the type not matching, but did not handle extra trailing data (like an extra dash). OpenSSL's PEM library refuses to open this data.
The text was updated successfully, but these errors were encountered: