diff --git a/xml/System.Security.Cryptography/DSASignatureFormat.xml b/xml/System.Security.Cryptography/DSASignatureFormat.xml index eb00d756f4a..2305d34c8eb 100644 --- a/xml/System.Security.Cryptography/DSASignatureFormat.xml +++ b/xml/System.Security.Cryptography/DSASignatureFormat.xml @@ -45,7 +45,7 @@ The signature format from IEEE P1363, which produces a fixed size signature for a given key. - This signature format encodes the (r, s) tuple as the concatenation of the big-endian representation of r and the big-endian representation of s, 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 secp521r1, a 521-bit field, encodes each of r and s as 66 bytes, producing a signature output of 132 bytes. + This signature format encodes the (r, s) tuple as the concatenation of the big-endian representation of r and the big-endian representation of s. 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 secp521r1 (a 521-bit field) encodes each of r and s as 66 bytes, and produces a signature output of 132 bytes.