summaryrefslogtreecommitdiff
path: root/vendor/acme-client/lib/acme/client/certificate.rb
blob: 6c68cc56531199d96162f7f8a01d8e7eb0e19396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
class Acme::Client::Certificate
  extend Forwardable

  attr_reader :x509, :x509_chain, :request, :private_key, :url

  def_delegators :x509, :to_pem, :to_der

  def initialize(certificate, url, chain, request)
    @x509 = certificate
    @url = url
    @x509_chain = chain
    @request = request
  end

  def chain_to_pem
    x509_chain.map(&:to_pem).join
  end

  def x509_fullchain
    [x509, *x509_chain]
  end

  def fullchain_to_pem
    x509_fullchain.map(&:to_pem).join
  end

  def common_name
    x509.subject.to_a.find { |name, _, _| name == 'CN' }[1]
  end
end