summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/key/ecdsa.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/runtime/key/ecdsa.rb')
-rw-r--r--qa/qa/runtime/key/ecdsa.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/qa/qa/runtime/key/ecdsa.rb b/qa/qa/runtime/key/ecdsa.rb
new file mode 100644
index 00000000000..20adad45913
--- /dev/null
+++ b/qa/qa/runtime/key/ecdsa.rb
@@ -0,0 +1,12 @@
+# rubocop:disable Naming/FileName
+module QA
+ module Runtime
+ module Key
+ class ECDSA < Base
+ def initialize(bits = 521)
+ super('ecdsa', bits)
+ end
+ end
+ end
+ end
+end