Eradicate Plaintext .env Files from Developer Disks Forever
Ultra-fast, hardware-enclave secret isolation in pure Rust, built for Interlayer Blockchain and open for all.
Built for macOS TouchID, Windows Hello / TPM 2.0, and Linux Secret Service.
Secrets decrypt only in volatile process memory. Never touches disk. Never leaks in Git.
InterEnv core engine, CLI, and multi-language client SDKs are officially published and immediately available across all major package ecosystems:
| Ecosystem | Registry / Source | Install / Add Command | Direct Registry Links |
|---|---|---|---|
| Rust | crates.io | cargo add interenv • cargo install interenv | |
| Node.js / TypeScript | npm | npm install interenv • npx interenv | |
| Python / AI Agents | PyPI | pip install interenv | |
| PHP / Laravel / Symfony | Packagist | composer require bharathcoorg/interenv | |
| Go Microservices | Go Modules | go get github.com/Bharathcoorg/interenv/go/interenv@v1.0.1 | pkg.go.dev/github.com/Bharathcoorg/interenv/go |
| Standalone Binaries | GitHub Releases | Prebuilt binaries for Linux, macOS (Apple Silicon & Intel), Windows | GitHub v1.0.1 Release Assets |
| Container Image | GitHub Packages (GHCR) | docker pull ghcr.io/bharathcoorg/interenv:latest | GitHub Packages |
Every software engineer, Web3 validator, and AI agent builder uses environment variables to store mission-critical credentials: INTERLAYER_VALIDATOR_KEY, ETHEREUM_PRIVATE_KEY, OPENAI_API_KEY, AWS_SECRET_ACCESS_KEY, database connection strings, and webhook signing secrets.
.env files get accidentally committed to public GitHub repositories daily. Malicious npm and pip packages scan developers' hard drives to exfiltrate plaintext secrets. In blockchain environments, a leaked .env means permanent loss of validator stake or treasury funds.dotenvx encrypts secrets but stores the decryption key in another plaintext file (.env.keys) on disk! Cloud secret managers (1Password, Doppler, Infisical) are cloud-locked, slow, and require expensive monthly subscriptions.zeroize).| Feature | Plaintext .env | dotenvx | 1Password / Doppler | InterEnv (This Tool) |
|---|---|---|---|---|
| Storage Security | 🔴 Zero (Plaintext on disk) | 🟡 Key file on disk (.env.keys) | 🟢 Cloud Vault | 🟢 Hardware Enclave (TPM / TouchID) |
| Disk Plaintext | 🔴 Exposed | 🟡 Exposes decrypted files | 🟢 None | 🟢 ZERO Plaintext on Disk |
| Cloud Dependency | 🟢 Offline | 🟢 Offline | 🔴 Required (Vendor Lock-in) | 🟢 100% Offline & Local-First |
| Pricing | Free | Free | $19–$39/user/month | 🟢 100% Free & Open Source (MIT) |
| Git Pre-Commit Hook | ❌ Manual | ❌ Manual | ❌ Complex setup | 🟢 Built-in 1-Click Guard |
| Secure Shredding | ❌ None | ❌ None | ❌ None | 🟢 DoD 5220.22-M Multi-Pass Wipe |
| Runtime Speed | Instant | Slow (Node.js) | Slow CLI (Cloud round-trips) | ⚡ < 1ms (Pure Rust) |
cargo install interenv
npm install -g interenv
# Or run instantly without installation:
npx interenv --help
git clone https://github.com/Bharathcoorg/interenv.git
cd interenv
cargo build --release --features tpm
[!NOTE] Real TPM 2.0 Support: Linux hardware TPM 2.0 support requires building with
--features tpm. Without this flag, Linux falls back to software-based KEK protection.
See INSTALL.md for full installation guides across Cargo, NPM, PyPI, Go, PHP, and Docker.
.env into Hardware EnclaveInside any project with an existing .env file:
interenv lock
What happens:
.interenv.lock file..env from physical storage using DoD 5220.22-M 3-pass overwriting!Execute any tool, test runner, validator node, or web server:
# Interlayer Blockchain Node / Validator / Contract Deployment
interenv run interlayer-node --validator
# Node / Next.js / Web3
interenv run npm run dev
# Rust
interenv run cargo run
# Python / AI Agents
interenv run python app.py
# Docker / Go / Any Binary
interenv run docker compose up
Secrets are injected directly into child process memory. Nothing ever touches disk.
Need to add a new API key?
interenv edit
Opens your default $EDITOR in a secure temporary buffer, updates keys, re-encrypts into .interenv.lock, and securely shreds the temp buffer.
interenv hook install
Installs an automated guard in .git/hooks/pre-commit that detects and immediately aborts any accidental staging or commit of .env files or hardcoded API keys.
InterEnv provides native, zero-dependency SDKs across all major programming ecosystems. Secrets are injected directly into process memory without creating or touching plaintext .env files on disk.
npm install interenv
import { config } from "interenv";
config(); // Injects into process.env in-memory
console.log(process.env.OPENAI_API_KEY);
pip install interenv
import interenv, os
interenv.load_env() # Injects into os.environ in-memory
print(os.getenv("OPENAI_API_KEY"))
go get github.com/Bharathcoorg/interenv/go/interenv
package main
import (
"fmt"
"os"
"github.com/Bharathcoorg/interenv/go/interenv"
)
func main() {
interenv.Load() // Injects into os.Setenv in-memory
fmt.Println(os.Getenv("OPENAI_API_KEY"))
}
composer require bharathcoorg/interenv
use InterEnv\InterEnv;
InterEnv::load(); // Injects into $_ENV, $_SERVER, and putenv()
echo getenv('OPENAI_API_KEY');
| Command | Description |
|---|---|
interenv lock [file] | Encrypt .env into hardware enclave and securely shred the plaintext |
interenv run <cmd...> | Execute command with secrets injected into child process memory |
interenv edit | Open decrypted secrets in $EDITOR and re-seal automatically on save |
interenv show | Display sealed environment keys (masked by default, --reveal to unmask) |
interenv status | Inspect repository security status and hardware enclave binding |
interenv doctor | Audit filesystem CoW behavior, swap configuration, and enclave status |
interenv hook install | Install Git pre-commit hook to prevent secret leaks |
interenv shred <file> | Securely erase any file with 3-pass DoD overwrite |
rand::rngs::OsRng).macos-secure-enclave-v1).windows-ncrypt-tpm-v2) and DPAPI.linux-tpm2-v1) or FreeDesktop Secret Service.--passphrase or set INTERENV_PASSPHRASE to derive master keys via Argon2id (memory-hard password hashing with OWASP defaults: 19 MiB RAM, 2 iterations, parallelism = 1).zeroize::ZeroizeOnDrop, ensuring keys and values are actively wiped from RAM upon release.| Vector | Guarantee | Implementation |
|---|---|---|
| Disk Inspection | Zero Plaintext | Master key sealed in OS hardware vault; .env shredded immediately. |
| Peer Process Sniffing | Process Sandbox | Linux Seccomp BPF filter; macOS Sandbox profile; Windows Job Object. |
| Cross-Host Replay | Machine Bound | Hardware KEK prevents decrypting lockfile on foreign machines without passphrase. |
| Accidental Commits | Pre-Commit Abort | Automatic hook intercepts git commit staging .env or plain credentials. |
| Memory Dump on Drop | Buffer Scrubber | Custom Drop scrubs key and value buffers in-place via raw slice zeroization. |
| Feature | interenv | dotenv-vault | sops | git-crypt |
|---|---|---|---|---|
| Hardware Enclave KEK | 🟢 Native (TPM / SE) | ❌ Cloud Only | 🟡 Optional (KMS/PGP) | ❌ GPG Symmetric |
| Zero Plaintext on Disk | 🟢 Strict Guarantee | ❌ Decrypts on disk | ❌ Decrypts to disk | ❌ In-place filter |
| Process Sandboxing | 🟢 Seccomp / Sandbox | ❌ None | ❌ None | ❌ None |
| Cloud Dependency | 🟢 100% Offline | 🔴 Cloud Vault | 🟡 Cloud KMS / PGP | 🟢 100% Offline |
| DoD Multi-Pass Shred | 🟢 3-Pass + Platform | ❌ None | ❌ None | ❌ None |
| Language Runtime | ⚡ Pure Rust (<1ms) | 🟡 Node.js CLI | 🟡 Go CLI | ⚡ C++ Filter |
| Operating System | Enclave Key Storage | Process Sandbox Isolation | Disk Shredding Hook |
|---|---|---|---|
| Windows 10 / 11 / Server | TPM 2.0 (NCrypt) + DPAPI | Windows Job Object (KILL_ON_CLOSE) | SetEndOfFile + FlushFileBuffers + ADS Wipe |
| macOS (Apple Silicon / Intel) | Apple Secure Enclave + Keychain | Apple Sandbox Profile (sandbox_init) | F_FULLFSYNC Cache Flush |
| Linux (Ubuntu / Fedora / Arch) | TPM 2.0 (tss-esapi) / Secret Service | Seccomp BPF (PR_SET_NO_NEW_PRIVS) | FALLOC_FL_ZERO_RANGE + TRIM |
[!NOTE] Linux TPM 2.0 Hardware Binding: Real Linux TPM 2.0 hardware binding requires building with
--features tpm(cargo build --release --features tpm). Without this flag or on machines lacking/dev/tpmrm0, Linux automatically utilizes secure Freedesktop Secret Service / software KEK protection.
[!WARNING] Windows Job Object Isolation &
unsafe_modeFeature: Windows builds strictly enforce kernel Job Object isolation withJOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSEto ensure all spawned child trees terminate immediately wheninterenvexits. The optional Cargo featureunsafe_modeallowsINTERENV_UNSAFE=1to bypass Windows Job Object isolation for headless or virtualized CI runners that lack nested Job Object permissions. Never compile or enableunsafe_modein production environments.
fallocate, BLKDISCARD, SetFileValidData) and warns in interenv doctor.interenv lock --passphrase).InterEnv has undergone multi-phase adversarial security hardening:
Secrets full memory zeroization, crash-safe temporary file guards.safe_canonicalize).cargo-audit, cargo-deny), fuzz testing targets, criterion benchmarks, and lockfile schema v3.0 migration.InterEnv release binaries are bit-for-bit reproducible:
bash scripts/verify-reproducible-build.sh
All release binaries are built with lto = "fat", codegen-units = 1, panic = "abort", and path prefix remapping to ensure verifiable artifact provenance.
InterEnv is a high-performance, local-first secret management engine written in Rust that permanently eradicates plaintext .env files from developer disks. It binds encrypted project secrets directly to host hardware security enclaves (Apple Secure Enclave on macOS, TPM 2.0 / DPAPI on Windows, and Linux Secret Service) and decrypts them exclusively into volatile process memory.
Interlayer Blockchain is a sovereign multi-VM Layer 1 architecture designed for high-throughput consensus, decentralized validators, and autonomous on-chain AI agents. In high-stakes blockchain infrastructure, relying on external cloud secret managers introduces latency bottlenecks and vendor lock-in, while storing validator keys, relayer secrets, or deployer credentials in plaintext .env files risks catastrophic financial compromise. InterEnv was engineered to provide host silicon-level hardware isolation (Apple Secure Enclave and TPM 2.0) so that validator operators, node engineers, and autonomous Web3 agents can execute commands with zero plaintext exposure on physical disk.
dotenv: Leaves all API keys, database passwords, and private tokens unencrypted on physical storage, exposing them to rogue npm/pip supply-chain packages and accidental git commits.dotenvx: Encrypts .env files but writes the decryption master key to an unencrypted .env.keys file on the exact same disk.dotenv-vault / Doppler / Infisical: Require proprietary cloud vaults, persistent internet connections, and paid monthly subscriptions.InterEnv: 100% offline, local-first, free & open source (MIT), binds keys to host hardware chips (TPM 2.0 / TouchID), and cryptographically destroys plaintext files using 3-pass DoD 5220.22-M overwrites.AI coding agents execute your application via interenv run <command> or import the language SDK (interenv.config() in Node.js, interenv.load_env() in Python, interenv.Load() in Go, InterEnv::load() in PHP). Secrets are injected directly into the child process memory space via standard environment variables without ever creating a plaintext .env file on disk. This prevents LLMs, indexing bots, or repository search tools from reading or exfiltrating raw credentials.
When sealing a project for multi-developer or continuous integration workflows, run interenv lock --passphrase. In your automated CI runner (GitHub Actions, GitLab CI, Docker, Kubernetes), provide the secret passphrase through the INTERENV_PASSPHRASE environment variable along with INTERENV_CI=1. InterEnv derives the master key via OWASP-compliant memory-hard Argon2id (19 MiB RAM, 2 iterations, 1 parallelism) without interactive terminal prompts.
InterEnv was engineered to safeguard sensitive validator credentials, blockchain deployment keys, and autonomous AI agents for the Interlayer Blockchain sovereign multi-VM ecosystem, and is open source for developers worldwide:
intermcp — Ultra-fast, safe Model Context Protocol (MCP) engine and multiplexing hub in pure Rust.interenv — Hardware-enclave protected secrets for terminal, AI agents & git.MIT License. Copyright (c) 2026 Bharath B R (Interlayer). Contributions welcome! Please open an issue or PR.
35 commits
Rust
89.9%
JavaScript
3.5%
Python
2.1%
PHP
2.1%
Go
1.8%
Eradicate Plaintext .env Files from Developer Disks Forever
Ultra-fast, hardware-enclave secret isolation in pure Rust, built for Interlayer Blockchain and open for all.
Built for macOS TouchID, Windows Hello / TPM 2.0, and Linux Secret Service.
Secrets decrypt only in volatile process memory. Never touches disk. Never leaks in Git.
InterEnv core engine, CLI, and multi-language client SDKs are officially published and immediately available across all major package ecosystems:
| Ecosystem | Registry / Source | Install / Add Command | Direct Registry Links |
|---|---|---|---|
| Rust | crates.io | cargo add interenv • cargo install interenv | |
| Node.js / TypeScript | npm | npm install interenv • npx interenv | |
| Python / AI Agents | PyPI | pip install interenv | |
| PHP / Laravel / Symfony | Packagist | composer require bharathcoorg/interenv | |
| Go Microservices | Go Modules | go get github.com/Bharathcoorg/interenv/go/interenv@v1.0.1 | pkg.go.dev/github.com/Bharathcoorg/interenv/go |
| Standalone Binaries | GitHub Releases | Prebuilt binaries for Linux, macOS (Apple Silicon & Intel), Windows | GitHub v1.0.1 Release Assets |
| Container Image | GitHub Packages (GHCR) | docker pull ghcr.io/bharathcoorg/interenv:latest | GitHub Packages |
Every software engineer, Web3 validator, and AI agent builder uses environment variables to store mission-critical credentials: INTERLAYER_VALIDATOR_KEY, ETHEREUM_PRIVATE_KEY, OPENAI_API_KEY, AWS_SECRET_ACCESS_KEY, database connection strings, and webhook signing secrets.
.env files get accidentally committed to public GitHub repositories daily. Malicious npm and pip packages scan developers' hard drives to exfiltrate plaintext secrets. In blockchain environments, a leaked .env means permanent loss of validator stake or treasury funds.dotenvx encrypts secrets but stores the decryption key in another plaintext file (.env.keys) on disk! Cloud secret managers (1Password, Doppler, Infisical) are cloud-locked, slow, and require expensive monthly subscriptions.zeroize).| Feature | Plaintext .env | dotenvx | 1Password / Doppler | InterEnv (This Tool) |
|---|---|---|---|---|
| Storage Security | 🔴 Zero (Plaintext on disk) | 🟡 Key file on disk (.env.keys) | 🟢 Cloud Vault | 🟢 Hardware Enclave (TPM / TouchID) |
| Disk Plaintext | 🔴 Exposed | 🟡 Exposes decrypted files | 🟢 None | 🟢 ZERO Plaintext on Disk |
| Cloud Dependency | 🟢 Offline | 🟢 Offline | 🔴 Required (Vendor Lock-in) | 🟢 100% Offline & Local-First |
| Pricing | Free | Free | $19–$39/user/month | 🟢 100% Free & Open Source (MIT) |
| Git Pre-Commit Hook | ❌ Manual | ❌ Manual | ❌ Complex setup | 🟢 Built-in 1-Click Guard |
| Secure Shredding | ❌ None | ❌ None | ❌ None | 🟢 DoD 5220.22-M Multi-Pass Wipe |
| Runtime Speed | Instant | Slow (Node.js) | Slow CLI (Cloud round-trips) | ⚡ < 1ms (Pure Rust) |
cargo install interenv
npm install -g interenv
# Or run instantly without installation:
npx interenv --help
git clone https://github.com/Bharathcoorg/interenv.git
cd interenv
cargo build --release --features tpm
[!NOTE] Real TPM 2.0 Support: Linux hardware TPM 2.0 support requires building with
--features tpm. Without this flag, Linux falls back to software-based KEK protection.
See INSTALL.md for full installation guides across Cargo, NPM, PyPI, Go, PHP, and Docker.
.env into Hardware EnclaveInside any project with an existing .env file:
interenv lock
What happens:
.interenv.lock file..env from physical storage using DoD 5220.22-M 3-pass overwriting!Execute any tool, test runner, validator node, or web server:
# Interlayer Blockchain Node / Validator / Contract Deployment
interenv run interlayer-node --validator
# Node / Next.js / Web3
interenv run npm run dev
# Rust
interenv run cargo run
# Python / AI Agents
interenv run python app.py
# Docker / Go / Any Binary
interenv run docker compose up
Secrets are injected directly into child process memory. Nothing ever touches disk.
Need to add a new API key?
interenv edit
Opens your default $EDITOR in a secure temporary buffer, updates keys, re-encrypts into .interenv.lock, and securely shreds the temp buffer.
interenv hook install
Installs an automated guard in .git/hooks/pre-commit that detects and immediately aborts any accidental staging or commit of .env files or hardcoded API keys.
InterEnv provides native, zero-dependency SDKs across all major programming ecosystems. Secrets are injected directly into process memory without creating or touching plaintext .env files on disk.
npm install interenv
import { config } from "interenv";
config(); // Injects into process.env in-memory
console.log(process.env.OPENAI_API_KEY);
pip install interenv
import interenv, os
interenv.load_env() # Injects into os.environ in-memory
print(os.getenv("OPENAI_API_KEY"))
go get github.com/Bharathcoorg/interenv/go/interenv
package main
import (
"fmt"
"os"
"github.com/Bharathcoorg/interenv/go/interenv"
)
func main() {
interenv.Load() // Injects into os.Setenv in-memory
fmt.Println(os.Getenv("OPENAI_API_KEY"))
}
composer require bharathcoorg/interenv
use InterEnv\InterEnv;
InterEnv::load(); // Injects into $_ENV, $_SERVER, and putenv()
echo getenv('OPENAI_API_KEY');
| Command | Description |
|---|---|
interenv lock [file] | Encrypt .env into hardware enclave and securely shred the plaintext |
interenv run <cmd...> | Execute command with secrets injected into child process memory |
interenv edit | Open decrypted secrets in $EDITOR and re-seal automatically on save |
interenv show | Display sealed environment keys (masked by default, --reveal to unmask) |
interenv status | Inspect repository security status and hardware enclave binding |
interenv doctor | Audit filesystem CoW behavior, swap configuration, and enclave status |
interenv hook install | Install Git pre-commit hook to prevent secret leaks |
interenv shred <file> | Securely erase any file with 3-pass DoD overwrite |
rand::rngs::OsRng).macos-secure-enclave-v1).windows-ncrypt-tpm-v2) and DPAPI.linux-tpm2-v1) or FreeDesktop Secret Service.--passphrase or set INTERENV_PASSPHRASE to derive master keys via Argon2id (memory-hard password hashing with OWASP defaults: 19 MiB RAM, 2 iterations, parallelism = 1).zeroize::ZeroizeOnDrop, ensuring keys and values are actively wiped from RAM upon release.| Vector | Guarantee | Implementation |
|---|---|---|
| Disk Inspection | Zero Plaintext | Master key sealed in OS hardware vault; .env shredded immediately. |
| Peer Process Sniffing | Process Sandbox | Linux Seccomp BPF filter; macOS Sandbox profile; Windows Job Object. |
| Cross-Host Replay | Machine Bound | Hardware KEK prevents decrypting lockfile on foreign machines without passphrase. |
| Accidental Commits | Pre-Commit Abort | Automatic hook intercepts git commit staging .env or plain credentials. |
| Memory Dump on Drop | Buffer Scrubber | Custom Drop scrubs key and value buffers in-place via raw slice zeroization. |
| Feature | interenv | dotenv-vault | sops | git-crypt |
|---|---|---|---|---|
| Hardware Enclave KEK | 🟢 Native (TPM / SE) | ❌ Cloud Only | 🟡 Optional (KMS/PGP) | ❌ GPG Symmetric |
| Zero Plaintext on Disk | 🟢 Strict Guarantee | ❌ Decrypts on disk | ❌ Decrypts to disk | ❌ In-place filter |
| Process Sandboxing | 🟢 Seccomp / Sandbox | ❌ None | ❌ None | ❌ None |
| Cloud Dependency | 🟢 100% Offline | 🔴 Cloud Vault | 🟡 Cloud KMS / PGP | 🟢 100% Offline |
| DoD Multi-Pass Shred | 🟢 3-Pass + Platform | ❌ None | ❌ None | ❌ None |
| Language Runtime | ⚡ Pure Rust (<1ms) | 🟡 Node.js CLI | 🟡 Go CLI | ⚡ C++ Filter |
| Operating System | Enclave Key Storage | Process Sandbox Isolation | Disk Shredding Hook |
|---|---|---|---|
| Windows 10 / 11 / Server | TPM 2.0 (NCrypt) + DPAPI | Windows Job Object (KILL_ON_CLOSE) | SetEndOfFile + FlushFileBuffers + ADS Wipe |
| macOS (Apple Silicon / Intel) | Apple Secure Enclave + Keychain | Apple Sandbox Profile (sandbox_init) | F_FULLFSYNC Cache Flush |
| Linux (Ubuntu / Fedora / Arch) | TPM 2.0 (tss-esapi) / Secret Service | Seccomp BPF (PR_SET_NO_NEW_PRIVS) | FALLOC_FL_ZERO_RANGE + TRIM |
[!NOTE] Linux TPM 2.0 Hardware Binding: Real Linux TPM 2.0 hardware binding requires building with
--features tpm(cargo build --release --features tpm). Without this flag or on machines lacking/dev/tpmrm0, Linux automatically utilizes secure Freedesktop Secret Service / software KEK protection.
[!WARNING] Windows Job Object Isolation &
unsafe_modeFeature: Windows builds strictly enforce kernel Job Object isolation withJOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSEto ensure all spawned child trees terminate immediately wheninterenvexits. The optional Cargo featureunsafe_modeallowsINTERENV_UNSAFE=1to bypass Windows Job Object isolation for headless or virtualized CI runners that lack nested Job Object permissions. Never compile or enableunsafe_modein production environments.
fallocate, BLKDISCARD, SetFileValidData) and warns in interenv doctor.interenv lock --passphrase).InterEnv has undergone multi-phase adversarial security hardening:
Secrets full memory zeroization, crash-safe temporary file guards.safe_canonicalize).cargo-audit, cargo-deny), fuzz testing targets, criterion benchmarks, and lockfile schema v3.0 migration.InterEnv release binaries are bit-for-bit reproducible:
bash scripts/verify-reproducible-build.sh
All release binaries are built with lto = "fat", codegen-units = 1, panic = "abort", and path prefix remapping to ensure verifiable artifact provenance.
InterEnv is a high-performance, local-first secret management engine written in Rust that permanently eradicates plaintext .env files from developer disks. It binds encrypted project secrets directly to host hardware security enclaves (Apple Secure Enclave on macOS, TPM 2.0 / DPAPI on Windows, and Linux Secret Service) and decrypts them exclusively into volatile process memory.
Interlayer Blockchain is a sovereign multi-VM Layer 1 architecture designed for high-throughput consensus, decentralized validators, and autonomous on-chain AI agents. In high-stakes blockchain infrastructure, relying on external cloud secret managers introduces latency bottlenecks and vendor lock-in, while storing validator keys, relayer secrets, or deployer credentials in plaintext .env files risks catastrophic financial compromise. InterEnv was engineered to provide host silicon-level hardware isolation (Apple Secure Enclave and TPM 2.0) so that validator operators, node engineers, and autonomous Web3 agents can execute commands with zero plaintext exposure on physical disk.
dotenv: Leaves all API keys, database passwords, and private tokens unencrypted on physical storage, exposing them to rogue npm/pip supply-chain packages and accidental git commits.dotenvx: Encrypts .env files but writes the decryption master key to an unencrypted .env.keys file on the exact same disk.dotenv-vault / Doppler / Infisical: Require proprietary cloud vaults, persistent internet connections, and paid monthly subscriptions.InterEnv: 100% offline, local-first, free & open source (MIT), binds keys to host hardware chips (TPM 2.0 / TouchID), and cryptographically destroys plaintext files using 3-pass DoD 5220.22-M overwrites.AI coding agents execute your application via interenv run <command> or import the language SDK (interenv.config() in Node.js, interenv.load_env() in Python, interenv.Load() in Go, InterEnv::load() in PHP). Secrets are injected directly into the child process memory space via standard environment variables without ever creating a plaintext .env file on disk. This prevents LLMs, indexing bots, or repository search tools from reading or exfiltrating raw credentials.
When sealing a project for multi-developer or continuous integration workflows, run interenv lock --passphrase. In your automated CI runner (GitHub Actions, GitLab CI, Docker, Kubernetes), provide the secret passphrase through the INTERENV_PASSPHRASE environment variable along with INTERENV_CI=1. InterEnv derives the master key via OWASP-compliant memory-hard Argon2id (19 MiB RAM, 2 iterations, 1 parallelism) without interactive terminal prompts.
InterEnv was engineered to safeguard sensitive validator credentials, blockchain deployment keys, and autonomous AI agents for the Interlayer Blockchain sovereign multi-VM ecosystem, and is open source for developers worldwide:
intermcp — Ultra-fast, safe Model Context Protocol (MCP) engine and multiplexing hub in pure Rust.interenv — Hardware-enclave protected secrets for terminal, AI agents & git.MIT License. Copyright (c) 2026 Bharath B R (Interlayer). Contributions welcome! Please open an issue or PR.
35 commits
Rust
89.9%
JavaScript
3.5%
Python
2.1%
PHP
2.1%
Go
1.8%