static string ToHexString(byte[] bytes) { Preconditions.CheckNotNull(bytes); return(BitConverter.ToString(bytes).Replace("-", string.Empty)); }
internal static X509Certificate2 ParseManifestTrustedBundleCerts(string manifestTrustedCACerts) { Preconditions.CheckNotNull(manifestTrustedCACerts, nameof(manifestTrustedCACerts)); return(GetCertificatesFromPem(ParsePemCerts(manifestTrustedCACerts)).FirstOrDefault()); }
internal static IEnumerable <X509Certificate2> ParseTrustBundleResponse(TrustBundleResponse response) { Preconditions.CheckNotNull(response, nameof(response)); return(ParseTrustedBundleCerts(response.Certificate)); }
internal static IEnumerable <X509Certificate2> ParseTrustedBundleCerts(string trustedCACerts) { Preconditions.CheckNotNull(trustedCACerts, nameof(trustedCACerts)); return(GetCertificatesFromPem(ParsePemCerts(trustedCACerts))); }
public Try(Exception exception) { this.value = default(T); this.Exception = Preconditions.CheckNotNull(exception); }