diff options
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/x509_issuer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/x509_issuer.rb b/app/models/x509_issuer.rb index 514b38808ef..4b75e38bbde 100644 --- a/app/models/x509_issuer.rb +++ b/app/models/x509_issuer.rb @@ -7,7 +7,7 @@ class X509Issuer < ApplicationRecord validates :subject_key_identifier, presence: true, format: { with: /\A(\h{2}:){19}\h{2}\z/ } # rfc 5280 - 4.1.2.4 Issuer validates :subject, presence: true - # rfc 5280 - 4.2.1.14 CRL Distribution Points + # rfc 5280 - 4.2.1.13 CRL Distribution Points # cRLDistributionPoints extension using URI:http validates :crl_url, presence: true, public_url: true |