JAVA JS 中的 modulus exponent 生成 C# 公匙
Posted 寂寞夏天
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA JS 中的 modulus exponent 生成 C# 公匙相关的知识,希望对你有一定的参考价值。
C#用的是xml,里面是base64编码的。你上面的就是hex格式,只要把上面hex格式转成byte数组,然后在base64编码就可以了。
public static byte[] Hex2Byte(string byteStr) { try { byteStr = byteStr.ToUpper().Replace(" ", ""); int len = byteStr.Length / 2; byte[] data = new byte[len]; for (int i = 0; i < len; i++) { data[i] = Convert.ToByte(byteStr.Substring(i * 2, 2), 16); } return data; } catch (Exception ex) { // SystemLog.ErrLog("bin2byte失败:" + ex.Message); return new byte[] { }; } }
用上面hex转byte[]可以然后再base64,可以得到
然后再根据xml格式组成xml就是C#的公钥
以上是关于JAVA JS 中的 modulus exponent 生成 C# 公匙的主要内容,如果未能解决你的问题,请参考以下文章