You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
434 B

namespace com.hitrust.b2b.Security
{
using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Unicode)]
internal struct PUBLIC_KEY_BLOB
{
public byte bType;
public byte bVersion;
public short reserved;
public int aiKeyAlg;
public int magic;
public int bitlen;
public int pubexp;
}
}