コード例 #1
0
ファイル: NativeMethods.cs プロジェクト: bnantz/NCS-V1-1
 public static extern bool CryptUnprotectData(
     ref DataBlob dataInPointer,
     String dataDescr,
     ref DataBlob optionalEntropyPointer,
     IntPtr reservedVoidPointer,
     ref CryptProtectPromptStruct promptStructPointer,
     int flags,
     ref DataBlob dataOutPointer);
コード例 #2
0
ファイル: NativeMethods.cs プロジェクト: smillea1/NCS-V1-1
 public static extern bool CryptUnprotectData(
     ref DataBlob dataInPointer,
     String dataDescr,
     ref DataBlob optionalEntropyPointer,
     IntPtr reservedVoidPointer,
     ref CryptProtectPromptStruct promptStructPointer,
     int flags,
     ref DataBlob dataOutPointer);
コード例 #3
0
ファイル: Crypt32.cs プロジェクト: lurume84/jirafy-toastify
 public static extern bool CryptUnprotectData(ref DataBlob pDataIn, StringBuilder szDataDescr, ref DataBlob pOptionalEntropy, IntPtr pvReserved, ref CryptProtectPromptStruct pPromptStruct, CryptProtectFlags dwFlags, ref DataBlob pDataOut);
コード例 #4
0
ファイル: Crypto.cs プロジェクト: xxftapv/RDCMan
 public static extern bool CryptUnprotectData(ref DataBlob dataIn, string description, ref DataBlob optionalEntropy, IntPtr reserved, ref CryptProtectPromptStruct promptStruct, int flags, out DataBlob dataOut);