Socket
Book a DemoInstallSign in
Socket

agent-verifier-sdk

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agent-verifier-sdk

This SDK provides utilities for verifying agent attestation and enclave information.

latest
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

Agent Verifier SDK

This SDK provides utilities for verifying agent attestation and enclave information.

Features

  • Verify agent and enclave information from a remote endpoint
  • Utility functions for cryptographic operations

Getting Started

Prerequisites

  • Node.js >= 14
  • npm

Installation

Clone the repository and install dependencies:

npm install

Running Tests

This project uses Mocha for testing TypeScript files. To run tests:

npm test

Usage

You can use the SDK to verify agent and enclave information from a remote endpoint.

Example (TypeScript)

import { verify, getEnclaveInfo } from './src/index';

(async () => {
  // Verify agent and enclave info
  const result = await verify('https://example.com', 'serverName');
  console.log('Agent Info:', result?.agentInfo);
  console.log('Enclave Info:', result?.enclaveInfo);

  // Get only enclave info
  const enclaveInfo = await getEnclaveInfo('https://example.com');
  console.log('Enclave Info:', enclaveInfo);
})();

Project Structure

  • src/ - Source code
  • test/ - Test cases

License

MIT

FAQs

Package last updated on 10 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts