From fca36261cf5930295db73bdd7147d0a1f492091a Mon Sep 17 00:00:00 2001 From: Sarah Vilaysom Date: Thu, 11 Feb 2021 12:33:25 -0800 Subject: [PATCH 1/2] 373705 update strings for loc fix --- xml/System.Security.Cryptography/DSASignatureFormat.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xml/System.Security.Cryptography/DSASignatureFormat.xml b/xml/System.Security.Cryptography/DSASignatureFormat.xml index eb00d756f4a..9d103a5a9d9 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 are encoded 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 (521-bit field) encodes each of r and s as 66 bytes that produces a signature output of 132 bytes. From d7295339c622cfecde5781610b3d028eea794ce9 Mon Sep 17 00:00:00 2001 From: Sarah Vilaysom Date: Thu, 11 Feb 2021 13:34:15 -0800 Subject: [PATCH 2/2] Update xml/System.Security.Cryptography/DSASignatureFormat.xml Co-authored-by: Genevieve Warren <24882762+gewarren@users.noreply.github.com> --- xml/System.Security.Cryptography/DSASignatureFormat.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xml/System.Security.Cryptography/DSASignatureFormat.xml b/xml/System.Security.Cryptography/DSASignatureFormat.xml index 9d103a5a9d9..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 of these values are encoded 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 (521-bit field) encodes each of r and s as 66 bytes that produces 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.