Use a fixed salt length
This commit is contained in:
parent
0fcb57260b
commit
b596f5182d
1 changed files with 1 additions and 3 deletions
|
@ -12,9 +12,7 @@ import {
|
|||
MessageType,
|
||||
} from "./lib/ServerMessage";
|
||||
|
||||
const SALT = crypto
|
||||
.randomBytes(Math.round(Math.random() * 1024))
|
||||
.toString("hex");
|
||||
const SALT = crypto.randomBytes(2048).toString("hex");
|
||||
|
||||
const port = 8085;
|
||||
const timeout = 15000;
|
||||
|
|
Reference in a new issue