OpenAgentID documentation
Source referencesPackage entries

openagent-auth-protocol (Rust)

Transport-agnostic type layer for the OpenAgent Core Protocol identity flow (challenge-response authentication, Core Protocol Specification Section 15).

Purpose

Transport-agnostic type layer for the OpenAgent Core Protocol identity flow (challenge-response authentication, Core Protocol Specification Section 15).

Read the authentication protocol guide.

Source contract

FieldValue
Packageopenagent-auth-protocol
Version0.1.0
LanguageRust
Runtime floor1.78
Manifestopenagent-sdk/crates/openagent-auth-protocol/Cargo.toml
DistributionSource package; registry publication not verified

Manifest SHA-256: a1066943a0b5ed5bc298e444fc9d7912f4f00896e2ab0a10d77ea9d208361f81. 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/crates/openagent-auth-protocol/src/lib.rs

Source SHA-256: 986125777224d8b43f4ca1fb0a3c2b107512be4c4fcd1b8eabd61e27f3c4d240.

pub mod error;
pub mod handshake;
pub mod message;
pub mod session;
pub mod transport;
pub mod types;
pub use error::AuthProtocolError;
pub use message::{
    IdentityChallenge, IdentityProof, IdentityVerified, KeyType, TrustTier, CHALLENGE_TYPE,
};
pub use session::{InMemorySessionStore, Session, SessionId, SessionState, SessionStore};
pub use transport::AuthTransport;
pub use types::{ConformanceLevel, DidDocument, DiscoveryDocument, LineageLink, LineageProof};
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.

On this page