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
| Field | Value |
|---|---|
| Package | openagent-crypto-wasm |
| Version | 0.1.1 |
| Language | Rust |
| Runtime floor | 1.78 |
| Manifest | openagent-sdk/crates/openagent-crypto-wasm/Cargo.toml |
| Distribution | Source 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.
@openagentid/crypto-wasm (TypeScript)
Foundational WASM crypto primitives for OpenAgent, Arsenal, AEGIS, and OAS SDKs — one source of truth for Rust and TypeScript cryptographic correctness.
openagent-skills-policy (Rust)
Governance policy engine for agent skills — an Arsenal-composed policy layer that gates which SKILLS.md entries an agent may invoke, with rate limiting, argument constraints, time windows, consent, and hash-chained audit receipts.