4
votes
How do I prevent replay attacks?
If you really don't want to store any state, I think the best you can do is limit replay attacks by using timestamps and a short expiration time. For example, server sends:
{Ts, U, HMAC({Ts …
2
votes
What is the best way to encrypt a very short string in PHP?
If you want to encrypt and decrypt data within an application, you most likely want to use a symmetric key cipher. AES, which is the symmetric block encryption algorithm certified by the NSA for se …
3
votes
Compatible encryption between C# and PHP, ColdFusion, Ruby, Python
If you mean that it should be impossible for third-parties to decrypt data, then you will want to use an asymmetric encryption algorithm such as RSA. This will the third-party to encrypt data with …
1
vote
Generating a token that I can prove I generated
The solution you presented is on the right track. You're essentially performing challenge-response authentica …
