MCPcopy Create free account
hub / github.com/callstack/agent-device / fingerprint

Function fingerprint

src/remote/remote-connection-state.ts:220–223  ·  view source on GitHub ↗
(value: string | undefined)

Source from the content-addressed store, hash-verified

218}
219
220export function fingerprint(value: string | undefined): string | undefined {
221 if (!value) return undefined;
222 return crypto.createHash('sha256').update(value).digest('hex').slice(0, 12);
223}
224
225function resolveConnectionProfile(
226 state: RemoteConnectionState,

Callers 1

serializeConnectionStateFunction · 0.90

Calls 1

updateMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…