summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/key/ed25519.rb
blob: 63865c1cee5dbc19ce3bed4a8945fafae02b133c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# rubocop:disable Naming/FileName
module QA
  module Runtime
    module Key
      class ED25519 < Base
        def initialize
          super('ed25519', 256)
        end
      end
    end
  end
end