summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/key/ed25519.rb
blob: 53b556d744d2853ef9732d341310cf745a7ee610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# rubocop:disable Naming/FileName
# frozen_string_literal: true

module QA
  module Runtime
    module Key
      class ED25519 < Base
        def initialize
          super('ed25519', 256)
        end
      end
    end
  end
end