UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio

15 lines (14 loc) 704 B
/** * TlsFingerprint — optional TLS fingerprint mimicry (stub). * * In a full implementation this would configure the TLS ClientHello to * match a known browser or CLI fingerprint (JA3/JA4), making the TLS * handshake indistinguishable from a genuine Claude Code session. * * This is a placeholder: the transformRequest is a no-op pass-through. * Real JA3 mimicry requires a native TLS library (e.g. curl-impersonate * or a custom Node.js TLS agent), which is out of scope for the initial * implementation. */ import type { CloakingPlugin, TlsFingerprintOptions } from "../../../types/index.js"; export declare function createTlsFingerprint(options?: TlsFingerprintOptions): CloakingPlugin;