Is there a way to use ASCIIEncoding in Windows Phone 7?

Unless I'm doing something wrong Encoding.ASCII doesn't exist and I'm needing it for C# -> PHP encryption (as PHP only uses ASCII in SHA1 encryption).

Any suggestions?

link|improve this question
How does character encoding standards related to encyrption? As I understand it SHA1 (or any other hashing algorithm) takes a stream of bytes and generates a hash (also a short sequence of bytes). Where does character encoding enter the equation? – AnthonyWJones Oct 26 '10 at 10:13
Currently Generating a Hash in C# (For WP7) (Unicode) generates a different hash to which PHP Generates (ASCII). I saw another question on here saying that using 2 different encodings generate 2 different hash's. – Dean Oct 27 '10 at 7:31
feedback

3 Answers

up vote 16 down vote accepted

It is easy to implement yourself, Unicode never messed with the ASCII codes:

    public static byte[] StringToAscii(string s) {
        byte[] retval = new byte[s.Length];
        for (int ix = 0; ix < s.Length; ++ix) {
            char ch = s[ix];
            if (ch <= 0x7f) retval[ix] = (byte)ch;
            else retval[ix] = (byte)'?';
        }
        return retval;
    }
link|improve this answer
Thanks, Ill give it a go... – Dean Oct 27 '10 at 7:28
Thanks, Work Perfectly. – Dean Oct 27 '10 at 22:28
feedback

Not really seeing any detail in your question this could be off track. You are right Silverlight has no support for the ASCII encoding.

However I suspect that in fact UTF8 will do what you need. Its worth bearing in mind that a sequence of single byte ASCII only characters and the same set of characters encoded as UTF-8 are identical. That is the the complete ASCII character set is repeated verbatim by the first 128 single byte code points in UTF-8.

link|improve this answer
feedback

According to this MS forum thread, Windows Phone 7 does not support Encoding.ASCII.

link|improve this answer
Well, Is there other ways around this (E.G. Custom Class or Library)? Or does the Framework itself have to support ASCII? – Dean Oct 26 '10 at 9:47
feedback

Your Answer

 
or
required, but never shown

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