summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/key/ed25519.rb
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2018-03-09 11:50:21 +0000
committerLin Jen-Shin <godfat@godfat.org>2018-03-29 19:40:32 +0800
commit211b2f390c3311f5880b3de6a2fb16f7865ebaae (patch)
tree4e087ba5278183dfa128728a33931f3d5334b551 /qa/qa/runtime/key/ed25519.rb
parent9a538b9eebd6aed362c6ed86445d96c8e06ffdf2 (diff)
downloadgitlab-ce-211b2f390c3311f5880b3de6a2fb16f7865ebaae.tar.gz
Implement other ssh keys and use ssh-keygen instead
Diffstat (limited to 'qa/qa/runtime/key/ed25519.rb')
-rw-r--r--qa/qa/runtime/key/ed25519.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/qa/qa/runtime/key/ed25519.rb b/qa/qa/runtime/key/ed25519.rb
new file mode 100644
index 00000000000..bd2f2522447
--- /dev/null
+++ b/qa/qa/runtime/key/ed25519.rb
@@ -0,0 +1,11 @@
+module QA
+ module Runtime
+ module Key
+ class ED25519 < Base
+ def initialize
+ super('ed25519', 256)
+ end
+ end
+ end
+ end
+end