openagent-oidc (Rust)
OIDC/OAuth2 bridge for OpenAgent SDK — maps between human OIDC tokens and OAS agent DIDs + Arsenal capability tokens.
Purpose
OIDC/OAuth2 bridge for OpenAgent SDK — maps between human OIDC tokens and OAS agent DIDs + Arsenal capability tokens.
Read the identity bridges guide.
Source contract
| Field | Value |
|---|---|
| Package | openagent-oidc |
| Version | 0.1.0 |
| Language | Rust |
| Runtime floor | 1.78 |
| Manifest | openagent-sdk/bridges/oidc/rust/Cargo.toml |
| Distribution | Source package; registry publication not verified |
Manifest SHA-256: d477cbd59aeb5163e1e399a23777c0edfdec7b5a27c67bf81806f7e378586374. The recorded Git revision identifies the containing repository; the manifest and entry-point hashes identify this working-tree snapshot.
Integration
Use the package root above from an authorized source checkout. Preserve sibling dependencies and their version/feature requirements. Install the runtime and compile the selected package before using its generated artifacts. The task guide describes configuration, trust boundaries, and error behavior. Test/conformance and deployment packages are supporting tools, not interchangeable production identity providers.
Exported entry points
The declarations below are extracted from the named entry files. This is a navigable source reference, not compiler-generated documentation of every transitive module. Feature gates and runtime requirements still apply. Private implementation files are not promoted to public APIs merely because they contain a public declaration.
openagent-sdk/bridges/oidc/rust/src/lib.rs
Source SHA-256: e1b78269f34977b6ddbd8eb3685e0ace43ad061c633423ab5684a6c3f88bc039.
pub mod bridge;
pub mod config;
pub mod discovery;
pub mod error;
pub mod exchange;
pub mod jwks;
pub mod jwt;
pub mod mapping;
pub use bridge::OidcBridge;
pub use config::{OidcConfig, ProviderConfig};
pub use error::{OidcBridgeError, Result};
pub use exchange::{TokenExchangeRequest, TokenExchangeResponse};
pub use jwt::{ActJwtClaims, ValidatedClaims};
pub use mapping::DerivedAgent;
pub const VERSION: &str = env!("CARGO_PKG_VERSION");Module signatures and options
Browse the declared public source modules. This includes signatures, struct fields, enums, traits, method declarations, source comments and conditional attributes.
openagent-ws (Rust)
WebSocket adapter for the OpenAgent Auth Protocol (OAAP) — maps the 4-step OAAP handshake onto WebSocket connections for real-time agent-to-agent communication.
@openagentid/oidc (TypeScript)
OIDC/OAuth2 bridge for OpenAgent SDK — maps between human OIDC tokens and OAS agent DIDs + Arsenal capability tokens.