コード例 #1
0
ファイル: NCrypt.cs プロジェクト: block-core/blockcore-jose
 internal static extern uint NCryptVerifySignature(SafeNCryptKeyHandle hKey,
                                                   ref BCrypt.BCRYPT_PSS_PADDING_INFO pPaddingInfo,
                                                   byte[] pbHashValue,
                                                   int cbHashValue,
                                                   byte[] pbSignature,
                                                   int cbSignature,
                                                   uint dwFlags);
コード例 #2
0
ファイル: NCrypt.cs プロジェクト: block-core/blockcore-jose
 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);