Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.envless.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Version history for the @goenvless/sdk package. Pin it in your projects for the latest features, security patches, and performance improvements.

May 31, 2026
v0.0.1
Initial public release. Client-side helpers for encrypting and decrypting Envless variable values with the Web Crypto API.Exports
  • encrypt(plaintext, passphrase, workspaceUniqueId) — produces a v1:<base64(iv || ciphertext)> string ready to send to the API
  • decrypt(ciphertext, passphrase, workspaceUniqueId) — reverses encrypt for any v1:... value returned by the API
  • ENCRYPTION_PARAMETERS — the cryptographic constants (iterations, hash, IV length, salt namespace, version prefix) for byte-for-byte interop with non-JS implementations
  • EncryptionParameters — type of the constants object
Runtime
  • Pure Web Crypto API — no native dependencies, no WASM, no polyfill on Node 20+ / Bun / Deno / modern browsers
  • Same recipe used by the CLI, runtime, and dashboard — values encrypted here decrypt identically everywhere else