Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 11 additions & 75 deletions packages/auths-python/python/auths/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,82 +66,18 @@
)

__all__ = [
# Core verification (the launch use case)
"verify_attestation",
"verify_chain",
"VerificationResult",
"VerificationReport",
"VerificationError",

# Client
"Auths",

# Common types users will encounter
"AuthsError",
"VerificationError",
"CryptoError",
"KeychainError",
"StorageError",
"NetworkError",
"IdentityError",
"VerificationResult",
"VerificationStatus",
"ChainLink",
"VerificationReport",
"verify_at_time",
"verify_at_time_with_capability",
"verify_attestation",
"verify_chain",
"verify_attestation_with_capability",
"verify_chain_with_capability",
"verify_chain_with_witnesses",
"verify_device_authorization",
"sign_bytes",
"sign_action",
"verify_action_envelope",
"get_token",
"AgentAuth",
"ArtifactPublishResult",
"ArtifactSigningResult",
"Attestation",
"AttestationService",
"CommitSigningResult",
"AuthsClaims",
"Outcome",
"PolicyBuilder",
"ReasonCode",
"eval_context_from_commit_result",
"compile_policy",
"parse_identity_bundle",
"parse_identity_bundle_info",
"IdentityBundleInfo",
"TrustLevel",
"CommitResult",
"ErrorCode",
"VerifyResult",
"LayoutInfo",
"LayoutError",
"discover_layout",
"generate_allowed_signers",
"verify_commit_range",
"Identity",
"AgentIdentity",
"DelegatedAgent",
"IdentityService",
"Device",
"DeviceExtension",
"DeviceService",
"IdentityRotationResult",
"WitnessConfig",
"WitnessKey",
"Org",
"OrgMember",
"OrgService",
"OrgError",
"AuditReport",
"AuditService",
"AuditSummary",
"CommitRecord",
"TrustEntry",
"TrustService",
"Witness",
"WitnessService",
"Check",
"DiagnosticReport",
"DoctorService",
"PairingResponse",
"PairingResult",
"PairingService",
"PairingSession",
"PairingError",
"VerificationStatus",
]
1 change: 1 addition & 0 deletions packages/auths-python/python/auths/audit.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Audit reports and commit history analysis."""
from __future__ import annotations

import json
Expand Down
1 change: 1 addition & 0 deletions packages/auths-python/python/auths/doctor.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Diagnostic checks for identity and signing health."""
from __future__ import annotations

import json
Expand Down
1 change: 1 addition & 0 deletions packages/auths-python/python/auths/org.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Organization management — Stripe-style API."""
from __future__ import annotations

import json
Expand Down
1 change: 1 addition & 0 deletions packages/auths-python/python/auths/pairing.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Device pairing sessions — Stripe-style API."""
from __future__ import annotations

import json
Expand Down
1 change: 1 addition & 0 deletions packages/auths-python/python/auths/trust.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Trust pinning and identity verification levels."""
from __future__ import annotations

import enum
Expand Down
1 change: 1 addition & 0 deletions packages/auths-python/python/auths/witness.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Witness management for attestation countersigning."""
from __future__ import annotations

import json
Expand Down
Loading