12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- using System.Globalization;
- namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Utilities
- {
- internal static class Platform
- {
- private static readonly CompareInfo InvariantCompareInfo = CultureInfo.InvariantCulture.CompareInfo;
- internal static bool EqualsIgnoreCase(string a, string b)
- {
- return string.Equals(a, b, StringComparison.OrdinalIgnoreCase);
- }
- internal static string GetEnvironmentVariable(string variable)
- {
- try
- {
- return Environment.GetEnvironmentVariable(variable);
- }
- catch (System.Security.SecurityException)
- {
- // We don't have the required permission to read this environment variable,
- // which is fine, just act as if it's not set
- return null;
- }
- }
- internal static int IndexOf(string source, char value)
- {
- return InvariantCompareInfo.IndexOf(source, value, CompareOptions.Ordinal);
- }
- internal static int IndexOf(string source, string value)
- {
- return InvariantCompareInfo.IndexOf(source, value, CompareOptions.Ordinal);
- }
- internal static int IndexOf(string source, char value, int startIndex)
- {
- return InvariantCompareInfo.IndexOf(source, value, startIndex, CompareOptions.Ordinal);
- }
- internal static int IndexOf(string source, string value, int startIndex)
- {
- return InvariantCompareInfo.IndexOf(source, value, startIndex, CompareOptions.Ordinal);
- }
- internal static int LastIndexOf(string source, string value)
- {
- return InvariantCompareInfo.LastIndexOf(source, value, CompareOptions.Ordinal);
- }
- internal static bool StartsWith(string source, string prefix)
- {
- return InvariantCompareInfo.IsPrefix(source, prefix, CompareOptions.Ordinal);
- }
- internal static bool EndsWith(string source, string suffix)
- {
- return InvariantCompareInfo.IsSuffix(source, suffix, CompareOptions.Ordinal);
- }
- internal static string GetTypeName(object obj)
- {
- return obj.GetType().FullName;
- }
- }
- }
- #pragma warning restore
- #endif
|