/** * Perform an XOR operation on a hashed password and a salt value. * @param passwordHash * @param salt * @returns The XOR'ed value. Suitable for Login Server authentication. */ export declare function xorPasswordHash(passwordHash: string, salt: Uint8Array): Uint8Array; /** * A substitute for the game's built-in `DecryptPassword` function. * @param password An encrypted password string, as found in `TribesUser.ini`. * @returns */ export declare function DecryptPassword(password: string): string | undefined; /** * A substitute for the game's built-in `EncryptPassword` function. */ export declare function EncryptPassword(): void; //# sourceMappingURL=Password.d.ts.map