summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/key/ecdsa.rb
blob: 20adad459138067a5071c0072cf0f0d593e9f97f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# rubocop:disable Naming/FileName
module QA
  module Runtime
    module Key
      class ECDSA < Base
        def initialize(bits = 521)
          super('ecdsa', bits)
        end
      end
    end
  end
end