namespace com.hitrust.Security
|
|
{
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
internal struct CertificateNameValue
|
|
{
|
|
public int dwValueType;
|
|
public int cbData;
|
|
public IntPtr pbData;
|
|
}
|
|
}
|
|
|