I want my client side application to be able to decrypt some data generated server side, but not be able to encrypt data such that it can decrypt it again.
So the server can encrypt and decrypt, client can only decrypt.
RSA can't be used for this obviously, as having the private key (to decrypt) means you have to also have the public key.
I need to be able to ensure that the data I'm receiving from the server really did come from the server and wasn't generated by a third party. Giving the client application the public key would mean you couldn't do this.
Any advise on the best way to approach this would be most welcome.