This week's book giveaway is in the Java in General forum. We're giving away four copies of Helidon Revealed: A Practical Guide to Oracle’s Microservices Framework and have Michael Redlich on-line! See this thread for details.
I have written code C# for encryption using Rijndael algorithm.Now i want to decrypt it in php. I tried for that but not getting exact string which i encrypted.
Below is the encryption code for C#.
Decryption code in php is
Using above php code ,I am not getting original value. Kindly advice.....
I would first verify that a specific plain text string gets encrypted to the exact same encrypted and encoded string in both environments. If not, then the algorithms are not compatible (perhaps due to differences in interpretation of the algorithm, or perhaps in one group 'tweaking' the algorithm to 'make it better'). If the encoded strings are not the same, you will have to try other algorithms until you find one that generates the same encoded string on both platforms.