Exemplo n.º 1
0
 public static partial bool CryptSignHash(
     SafeHashHandle hHash,
     KeySpec dwKeySpec,
     string?szDescription,
     CryptSignAndVerifyHashFlags dwFlags,
     byte[]?pbSignature,
     ref int pdwSigLen);
Exemplo n.º 2
0
 public static partial bool CryptVerifySignature(
     SafeHashHandle hHash,
     byte[] pbSignature,
     int dwSigLen,
     SafeCapiKeyHandle hPubKey,
     string?szDescription,
     CryptSignAndVerifyHashFlags dwFlags);
Exemplo n.º 3
0
 public static extern bool CryptSignHash(
     SafeHashHandle hHash,
     KeySpec dwKeySpec,
     string szDescription,
     CryptSignAndVerifyHashFlags dwFlags,
     [Out] byte[] pbSignature,
     [In, Out] ref int pdwSigLen);
Exemplo n.º 4
0
 public static extern bool CryptVerifySignature(SafeHashHandle hHash, byte[] pbSignature, int dwSigLen, SafeKeyHandle hPubKey, String sDescription, CryptSignAndVerifyHashFlags dwFlags);
Exemplo n.º 5
0
 public static extern bool CryptSignHash(SafeHashHandle hHash, KeySpec dwKeySpec, String sDescription, CryptSignAndVerifyHashFlags dwFlags, [Out] byte[] pbSignature, [In, Out] ref int pdwSigLen);