[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-3]

remove some leftover garbage from dsskey
leftover from a cut & paste i was doing a few days ago.  bad robey.
This commit is contained in:
Robey Pointer 2003-11-07 10:36:42 +00:00
parent 14d7a745a7
commit 7d4d90a8c5
1 changed files with 0 additions and 8 deletions

View File

@ -73,14 +73,6 @@ class DSSKey(object):
m.add_string(deflate_long(r, 0) + deflate_long(s, 0))
return str(m)
rsa = RSA.construct((long(self.n), long(self.e), long(self.d)))
sig = deflate_long(rsa.sign(self.pkcs1imify(hash), '')[0], 0)
m = Message()
m.add_string('ssh-rsa')
m.add_string(sig)
return str(m)
def read_private_key_file(self, filename):
# private key file contains:
# DSAPrivateKey = { version = 0, p, q, g, y, x }