namespace com.hitrust.b2b.Security.Cryptography
|
|
{
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
internal struct PUBLICKEYSTRUC
|
|
{
|
|
public byte bType;
|
|
public byte bVersion;
|
|
public short reserved;
|
|
public IntPtr aiKeyAlg;
|
|
}
|
|
}
|
|
|