diff --git a/internal/http/request/cert_account.go b/internal/http/request/cert_account.go index 956fb464..67500e27 100644 --- a/internal/http/request/cert_account.go +++ b/internal/http/request/cert_account.go @@ -1,7 +1,7 @@ package request type CertAccountCreate struct { - CA string `form:"ca" json:"ca" validate:"required|in:googlecn,google,letsencrypt,buypass,zerossl,sslcom"` + CA string `form:"ca" json:"ca" validate:"required|in:googlecn,google,letsencrypt,litessl,buypass,zerossl,sslcom"` Email string `form:"email" json:"email" validate:"required"` Kid string `form:"kid" json:"kid"` HmacEncoded string `form:"hmac_encoded" json:"hmac_encoded"` @@ -10,7 +10,7 @@ type CertAccountCreate struct { type CertAccountUpdate struct { ID uint `form:"id" json:"id" validate:"required|exists:cert_accounts,id"` - CA string `form:"ca" json:"ca" validate:"required|in:googlecn,google,letsencrypt,buypass,zerossl,sslcom"` + CA string `form:"ca" json:"ca" validate:"required|in:googlecn,google,letsencrypt,litessl,buypass,zerossl,sslcom"` Email string `form:"email" json:"email" validate:"required"` Kid string `form:"kid" json:"kid"` HmacEncoded string `form:"hmac_encoded" json:"hmac_encoded"` diff --git a/web/src/views/cert/AccountView.vue b/web/src/views/cert/AccountView.vue index cf900464..f9061698 100644 --- a/web/src/views/cert/AccountView.vue +++ b/web/src/views/cert/AccountView.vue @@ -213,7 +213,7 @@ onUnmounted(() => { {{ $gettext( - 'Google and SSL.com require obtaining KID and HMAC from their official websites first' + 'LiteSSL, Google and SSL.com require obtaining EAB (KID and HMAC) from their official websites first' ) }} diff --git a/web/src/views/cert/CreateAccountModal.vue b/web/src/views/cert/CreateAccountModal.vue index 9dd55c23..1d86e7a3 100644 --- a/web/src/views/cert/CreateAccountModal.vue +++ b/web/src/views/cert/CreateAccountModal.vue @@ -70,7 +70,7 @@ const handleCreateAccount = () => { {{ $gettext( - 'Google and SSL.com require obtaining KID and HMAC from their official websites first' + 'LiteSSL, Google and SSL.com require obtaining EAB (KID and HMAC) from their official websites first' ) }}