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
{{ message }}
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: src/System.Security.Cryptography.X509Certificates/src/System/Security/Cryptography/X509Certificates/X509Certificate.cs
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -278,7 +278,8 @@ public virtual String ToString(bool fVerbose)
278
278
sb.Append(" ");
279
279
byte[]serialNumber=this.GetSerialNumber();
280
280
Array.Reverse(serialNumber);
281
-
sb.AppendLine(serialNumber.ToHexStringUpper());
281
+
sb.Append(serialNumber.ToHexArrayUpper());
282
+
sb.AppendLine();
282
283
283
284
// NotBefore
284
285
sb.AppendLine();
@@ -296,7 +297,8 @@ public virtual String ToString(bool fVerbose)
0 commit comments