summary refs log tree commit diff
path: root/crypto/src/tls/SignatureScheme.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/tls/SignatureScheme.cs')
-rw-r--r--crypto/src/tls/SignatureScheme.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/tls/SignatureScheme.cs b/crypto/src/tls/SignatureScheme.cs
index ed8e3c21b..56bc52d89 100644
--- a/crypto/src/tls/SignatureScheme.cs
+++ b/crypto/src/tls/SignatureScheme.cs
@@ -199,7 +199,7 @@ namespace Org.BouncyCastle.Tls
 
         public static string GetText(int signatureScheme)
         {
-            string hex = Platform.ToUpperInvariant(Convert.ToString(signatureScheme, 16));
+            string hex = Convert.ToString(signatureScheme, 16).ToUpperInvariant();
             return GetName(signatureScheme) + "(0x" + hex + ")";
         }