Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions test/types/aedes.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { expectType } from 'tsd'
import { timingSafeEqual } from 'crypto'
import { Socket } from 'net'
import type {
Aedes,
Expand Down Expand Up @@ -27,8 +28,8 @@ const broker = Server({
callback(new Error('connection error'), false)
}
},
authenticate: (client: Client, username: Readonly<string>, password: Readonly<Buffer>, callback) => {
if (username === 'test' && password === Buffer.from('test') && client.version === 4) {
authenticate: (client: Client, username: string, password: Buffer, callback) => {
if (username === 'test' && timingSafeEqual(password, Buffer.from('test')) && client.version === 4) {
callback(null, true)
} else {
const error = new Error() as AuthenticateError
Expand Down
4 changes: 2 additions & 2 deletions types/instance.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ type PreConnectHandler = (client: Client, packet: ConnectPacket, callback: (erro

type AuthenticateHandler = (
client: Client,
username: Readonly<string>,
password: Readonly<Buffer>,
username: string,
password: Buffer,
done: (error: AuthenticateError | null, success: boolean | null) => void
) => void

Expand Down