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