Skip to content
Merged

373705 #5328

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion xml/System.Security.Cryptography/DSASignatureFormat.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<Docs>
<summary>
<para>The signature format from IEEE P1363, which produces a fixed size signature for a given key.</para>
<para>This signature format encodes the <code>(r, s)</code> tuple as the concatenation of the big-endian representation of <code>r</code> and the big-endian representation of <code>s</code>, each value encoding using the number of bytes required for encoding the maximum integer value in the key's mathematical field. For example, an ECDSA signature from the curve <code>secp521r1</code>, a 521-bit field, encodes each of <code>r</code> and <code>s</code> as 66 bytes, producing a signature output of 132 bytes.</para>
<para>This signature format encodes the <code>(r, s)</code> tuple as the concatenation of the big-endian representation of <code>r</code> and the big-endian representation of <code>s</code>. Each of these values is encoded using the number of bytes required to encode the maximum integer value in the key's mathematical field. For example, an ECDSA signature from the curve <code>secp521r1</code> (a 521-bit field) encodes each of <code>r</code> and <code>s</code> as 66 bytes, and produces a signature output of 132 bytes.</para>
</summary>
</Docs>
</Member>
Expand Down