2

这是来自 libeay32.dll(openssl 项目)的函数:

int i2o_ECPublicKey (EC_KEY * key, unsigned char ** out)

如何在 C# 中描述它(如果我想得到一个字节 [])?

代码:

[DllImport(DLLNAME, CallingConvention = CallingConvention.Cdecl)]
public extern static int i2o_ECPublicKey (IntPtr encKey, StringBuilder outPar);

我不喜欢这样,因为我认为结果是 unicode。

回答

        [DllImport(DLLNAME, CallingConvention = CallingConvention.Cdecl)]
        public extern static int i2o_ECPublicKey(IntPtr encKey, ref IntPtr outPar);

        [DllImport(DLLNAME, CallingConvention = CallingConvention.Cdecl)]
        public static extern int i2o_ECPublicKey(IntPtr encKey, int outPar);


        //Pass *out as null for required buffer length.
        int reqLen = i2o_ECPublicKey(k, 0);

        Byte[] outBuf = new Byte[reqLen];
        IntPtr unmanagedOut = Marshal.AllocCoTaskMem(outBuf.Length);
        int res = i2o_ECPublicKey(k, ref unmanagedOut);
        if (res == reqLen)
        {
            unmanagedOut -= reqLen; // because i2o_ECPublicKey add size to unmanagedOut
            Marshal.Copy(unmanagedOut, outBuf, 0, outBuf.Length);
        }
        Marshal.FreeCoTaskMem(unmanagedOut);
4

2 回答 2

2

我相信手动执行此操作,您需要使用 Marshal.Copy 将数组从非托管内存复制到托管字节 []。(注意,代码未经测试)。

public extern static int i2o_ECPublicKey (IntPtr encKey, ref IntPtr outPar);

...
//Pass *out as null for required buffer length.
int reqLen = i2o_ECPublicKey(key, null);

Byte[] outBuf = new Byte[reqLen];
IntPtr unmanagedOut = Marshal.AllocCoTaskMem(outBuf.Length);
int res = i2o_ECPublicKey(key, ref unmanagedOut);
if (res == 1) {
    Marshal.Copy(unmanaged, outBuf, 0, outBuf.Length);
}
Marshal.FeeCoTaskMem(unmanagedOut);
于 2013-05-20T17:48:43.613 回答
0

您可以使用正确的编码来获取字符串GetBytes

StringBuilder outPar;
string result = "";
byte[] parbytes = System.Text.Encoding.Unicode.GetBytes(outPar.ToString());
foreach(byte parbyte in parbytes)
{
    result+= Convert.ToChar(parbyte);
}
return result;
于 2013-05-20T19:15:26.150 回答