OpenAgentID documentation
Source referencesPackage entries

openagent-crypto-wasm (Rust)

Foundational WASM crypto primitives for OpenAgent, Arsenal, AEGIS, and OAS SDKs — one source of truth for Rust and TypeScript cryptographic correctness.

Purpose

Foundational WASM crypto primitives for OpenAgent, Arsenal, AEGIS, and OAS SDKs — one source of truth for Rust and TypeScript cryptographic correctness.

Read the cryptographic binding guide.

Source contract

FieldValue
Packageopenagent-crypto-wasm
Version0.1.1
LanguageRust
Runtime floor1.78
Manifestopenagent-sdk/crates/openagent-crypto-wasm/Cargo.toml
DistributionSource package; registry publication not verified

Manifest SHA-256: 7c4b2c23aef85fbd0d656f781ad172d871135be3f647e43fac938173c02bc10a. 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.

Features and optional dependencies

{
  "default": [
    "native"
  ],
  "native": [],
  "wasm": [
    "dep:wasm-bindgen",
    "dep:js-sys",
    "getrandom/js"
  ]
}

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-crypto-wasm/src/lib.rs

Source SHA-256: ca7f8f0e1dcb8f5effbb78f617609f811f8d519ada03695de6199cebdbf2ce9d.

pub mod aead;
pub mod blake3_hash;
pub mod ct;
pub mod ed25519;
pub mod encoding;
pub mod error;
pub mod frost;
pub mod hkdf_sha256;
pub mod jcs;
pub mod kdf_password;
pub mod sha;
pub mod x25519;
pub mod wasm_api;
pub use error::CryptoError;
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