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