コード例 #1
0
 public static partial bool CryptSignHash(
     SafeHashHandle hHash,
     KeySpec dwKeySpec,
     string?szDescription,
     CryptSignAndVerifyHashFlags dwFlags,
     byte[]?pbSignature,
     ref int pdwSigLen);
コード例 #2
0
 public static partial bool CryptVerifySignature(
     SafeHashHandle hHash,
     byte[] pbSignature,
     int dwSigLen,
     SafeCapiKeyHandle hPubKey,
     string?szDescription,
     CryptSignAndVerifyHashFlags dwFlags);
コード例 #3
0
 public static extern bool CryptSignHash(
     SafeHashHandle hHash,
     KeySpec dwKeySpec,
     string szDescription,
     CryptSignAndVerifyHashFlags dwFlags,
     [Out] byte[] pbSignature,
     [In, Out] ref int pdwSigLen);
コード例 #4
0
ファイル: CapiHelper.cs プロジェクト: SGuyGe/corefx
 public static extern bool CryptVerifySignature(SafeHashHandle hHash, byte[] pbSignature, int dwSigLen, SafeKeyHandle hPubKey, String sDescription, CryptSignAndVerifyHashFlags dwFlags);
コード例 #5
0
ファイル: CapiHelper.cs プロジェクト: SGuyGe/corefx
 public static extern bool CryptSignHash(SafeHashHandle hHash, KeySpec dwKeySpec, String sDescription, CryptSignAndVerifyHashFlags dwFlags, [Out] byte[] pbSignature, [In, Out] ref int pdwSigLen);