summaryrefslogtreecommitdiff
path: root/app/helpers/x509_helper.rb
blob: 4afc5643af4956a01a9af69c22e3c49d617150a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

require 'net/ldap/dn'

module X509Helper
  def x509_subject(subject, search_keys)
    subjects = {}

    Net::LDAP::DN.new(subject).each_pair do |key, value|
      if key.upcase.start_with?(*search_keys.map(&:upcase))
        subjects[key.upcase] = value
      end
    end

    subjects
  rescue StandardError
    {}
  end

  def x509_signature?(sig)
    sig.is_a?(X509CommitSignature) || sig.is_a?(Gitlab::X509::Signature)
  end
end