这是来自 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);