Search Results

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 …