debian-mirror-gitlab/app/helpers/x509_helper.rb

24 lines
483 B
Ruby
Raw Normal View History

2020-03-28 13:19:24 +05:30
# 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
2021-06-08 01:23:25 +05:30
rescue StandardError
2020-03-28 13:19:24 +05:30
{}
end
2020-05-24 23:13:21 +05:30
def x509_signature?(sig)
2022-01-26 12:08:38 +05:30
sig.is_a?(CommitSignatures::X509CommitSignature) || sig.is_a?(Gitlab::X509::Signature)
2020-05-24 23:13:21 +05:30
end
2020-03-28 13:19:24 +05:30
end