Category: java
aes encryption and decryption in Java and C#
- Dec 18, 2020
thanks to fguaman for share the source in github, you can copy the source here but for backup purposes, i will copy paste it here c# using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Security.Cryptography; /** * * @author fguaman */ public abstract class AES { public static String doEncryptAES(String plainText, String key) { […]
Read More