Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here I am trying to decrpyt a string using private key and getting an error like:

The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or a non-white space character among the padding characters.

The string(i.e string authenticationString) which i am trying to decrpyt is:

Z7W7ja7G+NB3+QsbNnsz7zCkt1xeZ1PQC606wZzQG2McjExT6WjFPDWNpVSqcw1X+K6TERZUK4677m5Z6x9TuxLxyA8h8LmB4dwcJsQZGoVg0mOLsxO6GZmdThLyQOxQgnA7sk4KHLv6DrVswtVzjM/gJouvDKHTC7+NZmjhWwA=

and my code is:

 internal virtual Credentials Extract(string basicAuthenticationCredentials)
      {
         string authenticationString = RemoveBasicFromAuthenticationString(basicAuthenticationCredentials);
         string privateKeyPath = @"D:\Bala\MVC\RestService\RestClient\Scripts\PrivateKey.xml";
         myRsa.LoadPrivateFromXml(privateKeyPath);  // Loading the Private key
         RSACryptoServiceProvider localRsa = new RSACryptoServiceProvider();
         localRsa.FromXmlString(File.ReadAllText(privateKeyPath));
         byte[] decMessage = Convert.FromBase64String(authenticationString);
         byte[] message = null;
         // Calling the right decryption method according to the user selection
         message = myRsa.PrivateDecryption(decMessage);
         string au = Encoding.UTF8.GetString(message);
         return extractor.Extract(decoder.Decode(au));
      }

and in string au I am geting a value like:

d��!���u�I|�3��iaȴ{ȱ��q��A��z��ta �i8?�-�[�#�*&��Y^l,�v������ā�\�f�$R�V����&g;�

and am getting this error for a particular username password only. Others are working fine. Any suggestion?

EDIT: The error is throwing in this line byte[] decodedStringInBytes = Convert.FromBase64String(encodedValue);

internal virtual string Decode(string encodedValue)
      {
         byte[] decodedStringInBytes = Convert.FromBase64String(encodedValue);
         return Encoding.ASCII.GetString(decodedStringInBytes);
      }

EDIT 2:

internal class DecodedCredentialsExtractor
   {
      internal virtual Credentials Extract(string credentials)
      {
         if (!string.IsNullOrEmpty(credentials))
         {
            string[] credentialTokens = credentials.Split(':');
            //string securityToken = string.Empty;
            if (credentialTokens.Length == 2)
            {
               return new Credentials(credentialTokens[0], credentialTokens[1]);
            }
         }

         throw new ArgumentException("The supplied credential string is invalid, it should comply to [username:password]", "credentials");
      }
   }
share|improve this question
2  
I don't understand how you can be getting an exception in FromBase64String and still get a value for au... – Jon Skeet Dec 12 '12 at 7:59
And your base64 encoded string is fine... – L.B Dec 12 '12 at 8:00
which line throws the exception? – Marc Gravell Dec 12 '12 at 8:02
@jon that au is not a proper value right?? for other strings and all getting a au value like 'c2FjaGluOnBhc3N3b3Jk' – bala3569 Dec 12 '12 at 8:03
Why are you using both Encoding.UTF8 and Encoding.ASCII in your code? – Alex Filipovici Dec 12 '12 at 8:16

1 Answer

The fact that you are getting a value for au suggests that it isn't the base-64 decode in the question that is erroring. I'm going to make the assumption that is actually the last line that is failing, and is expecting base-64 - and you are using UTF-8 (backwards, I suspect, which isn't valid). Try:

     message = myRsa.PrivateDecryption(decMessage);
     string au = Convert.ToBase64String(message);
     return extractor.Extract(decoder.Decode(au));
share|improve this answer
Look at my edit Marc – bala3569 Dec 12 '12 at 8:05
2  
@bala3569 right; so that supports the view that Decode expects base-64, not a decoded (via UTF-8) string – Marc Gravell Dec 12 '12 at 8:06
(reply to a now-deleted comment) @bala3569 have you tried the thing I already suggested? Although frankly: the main thing to do is to make sure you understand and document what each method expects; i.e. if it is a string, is is actual text, base-64, etc; if it is a blob, what is it. – Marc Gravell Dec 12 '12 at 8:08
Look at my edit 2..there it is throwing the error The supplied credential string is invalid, it should comply to [username:password] – bala3569 Dec 12 '12 at 9:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.