mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
remove bcrypt dependency
With oragono 6f2b610736 we can now pipe to `oragono genpasswd` instead
This commit is contained in:
@ -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'
|
||||
|
@ -2,4 +2,3 @@ limnoria > 2012.08.04 # Needs MultipleReplacer, from 1a64f105
|
||||
psutil >= 3.1.0 # Fixes #640
|
||||
ecdsa
|
||||
pyxmpp2_scram
|
||||
bcrypt
|
||||
|
Reference in New Issue
Block a user