(options)
| 55 | #clientKey; |
| 56 | |
| 57 | constructor(options) { |
| 58 | this.#verify = options.verify ?? true; |
| 59 | if (options.certificate) |
| 60 | this.register(options.certificate); |
| 61 | this.#clientCertificates = options.clientCertificates; |
| 62 | this.#clientKey = options.clientKey; |
| 63 | } |
| 64 | getCerts() { |
| 65 | // return the self certs |
| 66 | return [getResource("srvcert.der")]; |