remove bcrypt dependency

With oragono 6f2b610736 we can now pipe to `oragono genpasswd` instead
This commit is contained in:
Shivaram Lingamneni
2019-02-10 00:15:30 -05:00
parent 125b49f878
commit 884f2010cd
2 changed files with 5 additions and 4 deletions

View File

@ -2,8 +2,6 @@ import os
import time
import subprocess
import bcrypt
from irctest.basecontrollers import NotImplementedByController
from irctest.basecontrollers import BaseServerController, DirectoryBasedController
@ -86,7 +84,11 @@ history:
def hash_password(password):
if isinstance(password, str):
password = password.encode('utf-8')
return bcrypt.hashpw(password, bcrypt.gensalt(4)).decode('utf-8')
# simulate entry of password and confirmation:
input_ = password + b'\n' + password + b'\n'
p = subprocess.Popen(['oragono', 'genpasswd'], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
out, _ = p.communicate(input_)
return out.decode('utf-8')
class OragonoController(BaseServerController, DirectoryBasedController):
software_name = 'Oragono'

View File

@ -2,4 +2,3 @@ limnoria > 2012.08.04 # Needs MultipleReplacer, from 1a64f105
psutil >= 3.1.0 # Fixes #640
ecdsa
pyxmpp2_scram
bcrypt