summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/key/rsa.rb
blob: d2bd72e57100fbce115ecc71201d242947d6ed91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module QA
  module Runtime
    module Key
      class RSA < Base
        def initialize(bits = 4096)
          super('rsa', bits)
        end
      end
    end
  end
end