async Task <Stream> DownloadCertificate()
        {
            HttpResponseMessage response = await HttpRequest.GetHttpResponse(EndPointHelper.GetCertificateURL());

            Stream stream = await response.Content.ReadAsStreamAsync();

            return(stream);
        }