DSACryptoServiceProvider.VerifyData(Byte[], Byte[]) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
驗證指定的簽章資料,方法是用它與指定資料計算出來的簽章進行比對。
public:
bool VerifyData(cli::array <System::Byte> ^ rgbData, cli::array <System::Byte> ^ rgbSignature);
public bool VerifyData (byte[] rgbData, byte[] rgbSignature);
override this.VerifyData : byte[] * byte[] -> bool
member this.VerifyData : byte[] * byte[] -> bool
Public Function VerifyData (rgbData As Byte(), rgbSignature As Byte()) As Boolean
參數
- rgbData
- Byte[]
已簽署的資料。
- rgbSignature
- Byte[]
要驗證的簽章資料。
傳回
如果簽章驗證為有效,則為 true
,否則為 false
。
備註
這個方法會 DSA 驗證 所產生的 SignData數字簽名。