x


MD5 Implementation - Server Side High Score Problems

I'm trying to get this working: http://www.unifycommunity.com/wiki/index.php?title=Server_Side_Highscores

After following the instructions on that page I got this error: Assets/HSController.js(13,14): BCE0005: Unknown identifier: 'Md5'.

I found this post with the same problem: http://forum.unity3d.com/threads/45500-Server-Side-Highscores-tutorial-Unknown-identifier-Md5

And someone suggested looking at this wiki entry for MD5: http://www.unifycommunity.com/wiki/index.php?title=MD5

On that wiki it says to "placed (the c# code) in your static-only utility class". I didn't know where to find that class so I tried the .js version of the code and got the following error: Assets/md5functions.js(6,34): BCE0023: No appropriate version of 'System.Text.UTF8Encoding.GetBytes' for the argument list '(Object)' was found.

So my questions. Where is the "static-only utility class"? and/or How can I avoid the md5functions.js error?

Thanks!!

more ▼

asked Nov 18 '10 at 09:41 AM

user-2585 (google) gravatar image

user-2585 (google)
1 4 4 4

(comments are locked)
10|3000 characters needed characters left

2 answers: sort voted first

:) "Your static only class" is any class you like. In C# every function belongs to a class. For some generic functions (that are not related to an object or class) you normally create a static class (you can't create an instance of this class). A static class can only contain static members (variables and functions). Generally you can call your class whatever you want, but in your case the class should be named "Md5".

Otherwise this code wouldn't work:

var hash=Md5.Md5Sum(name + score + secretKey);

When you already have an own static class for your other static methods, you can add the Md5Sum function to that class but then you have to use:

var hash=YourStaticClassName.Md5Sum(name + score + secretKey);
more ▼

answered Dec 28 '10 at 04:08 AM

Bunny83 gravatar image

Bunny83
45.2k 11 49 207

(comments are locked)
10|3000 characters needed characters left

There´s a way to do it with the .js version?

more ▼

answered Oct 07 '11 at 08:38 PM

NE07HEKIN6 gravatar image

NE07HEKIN6
1 2 2 2

(comments are locked)
10|3000 characters needed characters left
Your answer
toggle preview:

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Topics:

x412
x70
x43
x41
x4

asked: Nov 18 '10 at 09:41 AM

Seen: 2809 times

Last Updated: Oct 07 '11 at 08:38 PM