Integrate client-side AES-256 encryption and SSS key splitting directly into shell scripts, GitHub Actions, and database backup routines.
Standard commands for command-line workflows
npm install -g @ampcrypt/cliInstall globally using NPM or Node package managers.
ampcrypt encrypt --input ./secret-data.zip --out ./encrypted.amp --passphrase 'MyPass123!'Encrypts payload using AES-256-GCM and generates AMPCrypt binary header.
ampcrypt sss-split --secret 'MyMasterSecret' --shares 5 --threshold 3Generates 5 threshold key shares where any 3 can reconstruct the secret.
ampcrypt decrypt --input ./encrypted.amp --out ./restored.zip --passphrase 'MyPass123!'Authenticates ciphertext MAC and restores original file contents.