[Solved] Invalid length for a Base-64 char array


The code relevant to your question is this:

string sQueryString = txtPassword.Text;
byte[] buffer = Convert.FromBase64String(sQueryString);

Create a test case for this, containing the data as is entered when you get the error. Perhaps your users don’t input their password as base64.

1

solved Invalid length for a Base-64 char array