RSAENH_CPVerifySignature.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

RSAENH_CPVerifySignature (RSAENH.@)

SYNOPSIS

BOOL RSAENH_CPVerifySignature
 (
  HCRYPTPROV  hProv,
  HCRYPTHASH  hHash,
  CONST BYTE* pbSignature,
  DWORD       dwSigLen,
  HCRYPTKEY   hPubKey,
  LPCWSTR     sDescription,
  DWORD       dwFlags
 )

DESCRIPTION

Verify the signature of a hash object.

PARAMS

hProv [In] The key container, to which the hash belongs.

hHash [In] The hash for which the signature is verified.

pbSignature [In] The binary signature.

dwSigLen [In] Length of the signature BLOB.

hPubKey [In] Public key used to verify the signature.

sDescription [In] Should be NULL for security reasons.

dwFlags [In] 0, CRYPT_NOHASHOID or CRYPT_X931_FORMAT: Format of the signature.

RETURNS

Success: TRUE (Signature is valid)

Failure: FALSE (GetLastError() == NTE_BAD_SIGNATURE, if signature is invalid)

IMPLEMENTATION

Not defined in a Wine header. The function is either undocumented, or missing from Wine.

Implemented in "dlls/rsaenh/rsaenh.c".

Debug channel "crypt".