jQuery jCryption equivalent in C#

53 Views Asked by At

I have a C# code to mimic the jQuery jCryption encrypt method:

public static string Encrypt(string plainText, string modulus, string exponent)
{
    RSAParameters rsaParams = new RSAParameters
    {
        Modulus = HexStringToByteArray(modulus),
        Exponent = HexStringToByteArray(exponent)
    };

    using (RSACryptoServiceProvider rsa = new RSACryptoServiceProvider())
    {
        rsa.ImportParameters(rsaParams);
        byte[] dataBytes = Encoding.UTF8.GetBytes(plainText);
        byte[] encryptedData = rsa.Encrypt(dataBytes, false);
        return BitConverter.ToString(encryptedData).Replace("-", "").ToLower();
    }
}

public static byte[] HexStringToByteArray(string hex)
{
    int length = hex.Length / 2;
    byte[] bytes = new byte[length];
    for (int i = 0; i < length; i++)
    {
        bytes[i] = Convert.ToByte(hex.Substring(i * 2, 2), 16);
    }
    return bytes;
}

Unfortunately, it doesn't have the same result as what jCryption produces. I mean the server validates the javascript code correctly while the C# code is wrong

EDIT: jquery jcryption file I hosted here

0

There are 0 best solutions below