no crypt cipher needed for key saving

This commit is contained in:
Thomas S Hatch 2012-04-21 15:10:57 -06:00
parent c4e28d529d
commit e7c4289271

View File

@ -148,7 +148,7 @@ class Auth(object):
else:
log.info('Generating keys: {0}'.format(self.opts['pki_dir']))
gen_keys(self.opts['pki_dir'], 'minion', 4096)
key = RSA.load_key(self.rsa_path, None)
key = RSA.load_key(self.rsa_path)
return key
def minion_sign_in_payload(self):