feat: SGX attestation

This commit is contained in:
Alpha Nerd 2026-07-19 10:48:34 +02:00
parent b055df5b87
commit 75867ef85a
Signed by: alpha-nerd
SSH key fingerprint: SHA256:QkkAgVoYi9TQ0UKPkiKSfnerZy2h4qhi3SVPXJmBN+M
13 changed files with 1334 additions and 9 deletions

View file

@ -6,7 +6,12 @@
export { SecureChatCompletion } from './api/SecureChatCompletion';
export { SecureCompletionClient } from './core/SecureCompletionClient';
// SGX DCAP attestation — mirrors Python's AttestationPolicy, QuoteVerifier,
// CallableQuoteVerifier, JwtQuoteVerifier and SgxAttestationVerifier
export * from './core/attestation';
// Export types
export * from './types/attestation';
export * from './types/api';
export * from './types/client';
export * from './types/crypto';