Add type to serverKey in server (#1349)

* add types to serverKey in server

* don't change dep order
This commit is contained in:
u9g 2024-12-04 15:22:11 -05:00 committed by GitHub
parent 2224d82406
commit d6b4e82eb1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 0 deletions

View file

@ -45,6 +45,7 @@
"prismarine-registry": "^1.8.0"
},
"dependencies": {
"@types/node-rsa": "^1.1.4",
"@types/readable-stream": "^4.0.0",
"aes-js": "^3.1.2",
"buffer-equal": "^1.0.0",

2
src/index.d.ts vendored
View file

@ -7,6 +7,7 @@ import { Agent } from 'http'
import { Transform } from "readable-stream";
import { BinaryLike, KeyObject } from 'crypto';
import { Realm } from "prismarine-realms"
import NodeRSA from 'node-rsa';
type PromiseLike = Promise<void> | void
@ -166,6 +167,7 @@ declare module 'minecraft-protocol' {
motd: string
motdMsg?: Object
favicon: string
serverKey: NodeRSA
close(): void
on(event: 'connection', handler: (client: ServerClient) => PromiseLike): this
on(event: 'error', listener: (error: Error) => PromiseLike): this

View file

@ -8,6 +8,11 @@ const { concat } = require('../transforms/binaryStream')
const { mojangPublicKeyPem } = require('./constants')
const debug = require('debug')('minecraft-protocol')
/**
* @param {import('../index').Client} client
* @param {import('../index').Server} server
* @param {Object} options
*/
module.exports = function (client, server, options) {
const mojangPubKey = crypto.createPublicKey(mojangPublicKeyPem)
const raise = (translatableError) => client.end(translatableError, JSON.stringify({ translate: translatableError }))