com um clique
crypto-hasher
WASM skill providing cryptographic hashing operations for VAK agents.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
WASM skill providing cryptographic hashing operations for VAK agents.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Instructions for building the VAK project including Rust, WASM skills, and Python bindings.
WASM skill providing basic arithmetic operations for VAK agents.
WASM skill providing JSON validation and manipulation for VAK agents.
WASM skill providing pattern matching operations for VAK agents.
Instructions for releasing and publishing the VAK project to crates.io and PyPI.
WASM skill providing text analysis operations for VAK agents.
| name | crypto-hasher |
| description | WASM skill providing cryptographic hashing operations for VAK agents. |
A WebAssembly module providing cryptographic hashing operations that runs inside the VAK kernel sandbox.
This skill provides secure hashing operations for:
# Build for WASM target
cargo build -p crypto-hasher --target wasm32-unknown-unknown --release
# Output location
# target/wasm32-unknown-unknown/release/crypto_hash.wasm
| Operation | Input | Output | Description |
|---|---|---|---|
sha256 | bytes | [u8; 32] | SHA-256 hash |
sha256_hex | bytes | String | SHA-256 hash as hex string |
hmac_sha256 | (key, data) | [u8; 32] | HMAC-SHA256 |
verify_hash | (data, hash) | bool | Verify hash matches |
This skill runs in the VAK WASM sandbox with:
// From VAK kernel
let hash = kernel.execute_skill("crypto-hasher", "sha256_hex", &data).await?;
Cargo.toml - Crate configurationsrc/lib.rs - Skill implementation