There is no way to protect your game as long as the control resides on the client. The dumber the client is, the better chance you have at securing the high scores.
We start out with the simplest approach: the client submits a score at the end of the game. You can use whatever tricky encryption method you want, but a cheater could simply adjust the stored score in memory. He doesn't even need to know how you are encrypting the data.
Even if you do this periodically throughout gameplay, it doesn't really matter. The server could try to estimate that there's no way for a high score to be valid given the time constraints, but at some point you end up with a score that is close enough to valid that you cannot discard it.
Cheaters can also alter the game to give themselves an unfair advantage. Say part of the game revolves being able to guess which door the treasure is behind. All they have to do is hack the game to show them that data. They don't even have to modify the score generating code... because they've made the game itself easier.
The only way to securely get around this on an untrusted platform is to offload the important parts of the gameplay to the server itself. The client becomes a dumb terminal of sorts, doing whatever it is told. The server keeps track of the high score in real time based on the client's actions. You cannot cheat in the above example if the client has no idea which door holds the treasure. However, this involves the server keeping track of every client's data which makes for higher resource usage on your end. Depending on the type of game, it might not be feasible.
And again, none of this is a fail safe against all hacks. e.g., A cheater could write a bot with superior reflexes that otherwise plays by all of the rules.
Some of this is needless worry if your game is small enough not to attract much attention. That's the ultimate security: Make a game that nobody wants to play and therefore nobody will bother to hack. ;)
All that said / in summary, here are some things you can do:
Store the high score in several variables, encrypting the actual contents in memory. That is, try to throw off the cheater who is looking at memory trying to find the score.
Use some sort of encryption when communicating with the server. You don't want the cheater to be able to simply sniff traffic and make a POST request... that's too easy.
Validate that the score makes sense given the amount of time played. You could periodically report the score to the server every five seconds, etc.
Make the client as dumb as possible... make the server authoritative.
If somebody posts an absolutely invalid score, ban that IP address and/or user account.
Pray that your game isn't very popular among hackers.