Skip to content

Commit

Permalink
CA: add GlobalSign Atlas as a built-in CA
Browse files Browse the repository at this point in the history
  • Loading branch information
webprofusion-chrisc committed Oct 16, 2024
1 parent 1387bc5 commit ce48edd
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,16 +95,17 @@ public class CertificateAuthority
{
public static readonly List<CertificateAuthority> CoreCertificateAuthorities = new List<CertificateAuthority>
{
CertificateAuthorities.Definitions.LetsEncrypt.GetDefinition(),
CertificateAuthorities.Definitions.BuyPass.GetDefinition(),
CertificateAuthorities.Definitions.ZeroSSL.GetDefinition(),
CertificateAuthorities.Definitions.SSLDotcom.GetDefinition(),
CertificateAuthorities.Definitions.LetsEncrypt.GetDefinition(),
CertificateAuthorities.Definitions.Martini.GetDefinition(),
CertificateAuthorities.Definitions.Google.GetDefinition(),
CertificateAuthorities.Definitions.GlobalSign.GetDefinition(),
CertificateAuthorities.Definitions.SectigoDV.GetDefinition(),
CertificateAuthorities.Definitions.SectigoOV.GetDefinition(),
CertificateAuthorities.Definitions.SectigoEV.GetDefinition(),
CertificateAuthorities.Definitions.SSLDotcom.GetDefinition(),
CertificateAuthorities.Definitions.SectigoEnterprise.GetDefinition(),
CertificateAuthorities.Definitions.Martini.GetDefinition()
CertificateAuthorities.Definitions.ZeroSSL.GetDefinition(),
};

public string? Id { get; set; }
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
using System.Collections.Generic;
using Certify.Models;

namespace Certify.CertificateAuthorities.Definitions
{
internal sealed class GlobalSign
{
public static CertificateAuthority GetDefinition()
{
return new CertificateAuthority
{
Id = "acme.atlas.globalsign.com",
Title = "GlobalSign Atlas",
Description = "The (commercial) GlobalSign ACME service issues CA/Browser Forum-compliant publicly trusted TLS certificates, as well as non-public Intranet certificates.",
APIType = CertAuthorityAPIType.ACME_V2.ToString(),
WebsiteUrl = "https://support.globalsign.com/atlas/acme/acme-overview",
PrivacyPolicyUrl = "https://www.globalsign.com/en/repository/GlobalSign-Privacy-Policy.pdf",
ProductionAPIEndpoint = "https://emea.acme.atlas.globalsign.com/directory",
StagingAPIEndpoint = string.Empty,
IsEnabled = true,
IsCustom = false,
SANLimit = 100,
StandardExpiryDays = 90,
RequiresEmailAddress = true,
RequiresExternalAccountBinding = true,
SupportsCachedValidations = true, // GlobalSign Atlas supports cached validations for 365 days
AllowInternalHostnames = true,
SupportedFeatures = new List<string>{
CertAuthoritySupportedRequests.DOMAIN_SINGLE.ToString(),
CertAuthoritySupportedRequests.DOMAIN_SINGLE_PLUS_WWW.ToString(),
CertAuthoritySupportedRequests.DOMAIN_MULTIPLE_SAN.ToString()
},
SupportedKeyTypes = new List<string>{
StandardKeyTypes.RSA256,
StandardKeyTypes.RSA256_3072,
StandardKeyTypes.RSA256_4096,
StandardKeyTypes.ECDSA256,
StandardKeyTypes.ECDSA384,
StandardKeyTypes.ECDSA521
},
EabInstructions = "See https://support.globalsign.com/atlas/acme/acme-overview"
};
}
}
}

0 comments on commit ce48edd

Please sign in to comment.