You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<paramname="hash">A read-only span of bytes containing a hash of the data to be signed.</param>
487
+
<paramname="destination">The buffer where the digital signature is to be written.</param>
488
+
<paramname="bytesWritten">When this method returns, the number of bytes that were written in <paramrefname="destination" />.</param>
489
+
<summary>Tries to create the digital signature for the specified data.</summary>
490
+
<returns><seelangword="true" /> if the digital signature was created successfully; <seelangword="false" /> if the <paramrefname="destination" /> buffer was too small.</returns>
493
491
<remarks>To be added.</remarks>
494
492
</Docs>
495
493
</Member>
@@ -561,16 +559,14 @@
561
559
<paramname="rgbHash">The signed data.</param>
562
560
<paramname="rgbSignature">The digital signature to be verified.</param>
563
561
<summary>Verifies if the specified digital signature matches the specified data.</summary>
564
-
<returns>
565
-
<seelangword="true" /> if <paramrefname="rgbSignature" /> matches the signature computed using the specified data; otherwise, <seelangword="false" />.</returns>
562
+
<returns><seelangword="true" /> if <paramrefname="rgbSignature" /> matches the signature computed using the specified data; otherwise, <seelangword="false" />.</returns>
566
563
<remarks>To be added.</remarks>
567
564
<exceptioncref="T:System.ArgumentNullException">The <paramrefname="rgbHash" /> parameter is <seelangword="null" />.
568
565
569
566
-or-
570
567
571
568
The <paramrefname="rgbSignature" /> parameter is <seelangword="null" />.</exception>
<paramname="hash">A read-only span of bytes containing the signed data.</param>
596
+
<paramname="signature">A read-only span of bytes containing the signature to be verified.</param>
597
+
<summary>Verifies if the specified digital signature matches the specified data.</summary>
598
+
<returns><seelangword="true" /> if <paramrefname="signature" /> matches the signature computed using the specified data; otherwise, <seelangword="false" />.</returns>
603
599
<remarks>To be added.</remarks>
600
+
<exceptioncref="T:System.PlatformNotSupportedException"><paramrefname="hash" /> is shorter in length than the Q value of the DSA key.</exception>
0 commit comments