CLI tool to decrypt QryptChat encrypted key files
npm install @profullstack/qrypt-decryptCLI tool to decrypt QryptChat encrypted key files.
``bash`
npm install -g @profullstack/qrypt-decrypt
`bash`
qrypt-decrypt your-key-file.json
The tool will prompt you for the password used to encrypt the keys.
- Node.js v20 or newer
- A QryptChat key export file (.json)
- The password used to export the keys
`bash
$ qrypt-decrypt qryptchat-pq-keys-2025-01-20T12-30-45-123Z.json
š QryptChat Key Decryption Tool v1.0.0
š Enter password: [hidden]
š Decrypting keys...
ā Keys decrypted successfully!
š Key Information:
Version: 2.0
Exported: 2025-01-20T12:30:45.123Z
š ML-KEM-1024 Keys:
Algorithm: ML-KEM-1024
Public Key: iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0CAYAAADL1t+KAAA...
Private Key: [PROTECTED - 4216 characters]
ā ļø Keep your private keys secure and never share them!
``
This tool uses the same AES-GCM-256 decryption method as the QryptChat web interface. It only decrypts and displays key information - it does not store or transmit any data.
MIT