(length?: number)
| 249 | const payload = JSON.stringify(raw) |
| 250 | const result = await send_rpc_request<GetTlsKeyResponse>(this.endpoint, '/GetTlsKey', payload) |
| 251 | const asUint8Array = (length?: number) => x509key_to_uint8array(result.key, length) |
| 252 | return Object.freeze({ |
| 253 | ...result, |
| 254 | asUint8Array, |
nothing calls this directly
no test coverage detected