summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/key/rsa.rb
blob: d94bde52325351b3d25397144180d4132b760fd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
module QA
  module Runtime
    module Key
      class RSA < Base
        def initialize(bits = 4096)
          super('rsa', bits)
        end
      end
    end
  end
end