summaryrefslogtreecommitdiff
path: root/generate-rsa-key
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-06-28 08:00:28 +0300
committerLars Wirzenius <liw@liw.fi>2019-07-05 20:59:10 +0300
commit1fc41ad97411b435c512ba3a0de63929eda9c33d (patch)
tree753b342e70c5ac2bf64eb619e95f815d47588e0b /generate-rsa-key
parent1c6d50edf9041055f4804a1ba21a4fc5499bb0a9 (diff)
downloadick2-1fc41ad97411b435c512ba3a0de63929eda9c33d.tar.gz
Change: make yarns run against a remote Ick instance, not local
Diffstat (limited to 'generate-rsa-key')
-rwxr-xr-xgenerate-rsa-key34
1 files changed, 0 insertions, 34 deletions
diff --git a/generate-rsa-key b/generate-rsa-key
deleted file mode 100755
index e44a796..0000000
--- a/generate-rsa-key
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/usr/bin/python3
-# Copyright (C) 2017 Lars Wirzenius
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-
-import sys
-
-import Crypto.PublicKey.RSA
-
-
-RSA_KEY_BITS = 4096 # A nice, currently safe length
-
-key = Crypto.PublicKey.RSA.generate(RSA_KEY_BITS)
-
-filename = sys.argv[1]
-
-def write(filename, byts):
- with open(filename, 'w') as f:
- f.write(byts.decode('ascii'))
-
-write(filename, key.exportKey('PEM'))
-write(filename + '.pub', key.exportKey('OpenSSH'))