summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/key/ed25519.rb
blob: f59d7b3688dbee60f31a95dcf192412f36b38add (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 ED25519 < Base
        def initialize(bits = 256)
          super('ed25519', bits)
        end
      end
    end
  end
end