Example #1
0
 internal static extern uint NCryptVerifySignature(SafeNCryptKeyHandle hKey,
                                                   ref BCrypt.BCRYPT_PSS_PADDING_INFO pPaddingInfo,
                                                   byte[] pbHashValue,
                                                   int cbHashValue,
                                                   byte[] pbSignature,
                                                   int cbSignature,
                                                   uint dwFlags);
Example #2
0
 internal static extern uint NCryptSignHash(SafeNCryptKeyHandle hKey,
                                            ref BCrypt.BCRYPT_PSS_PADDING_INFO pPaddingInfo,
                                            byte[] pbHashValue,
                                            int cbHashValue,
                                            byte[] pbSignature,
                                            int cbSignature,
                                            out uint pcbResult,
                                            uint dwFlags);