# ft-encryption **Repository Path**: mirrors_Financial-Times/ft-encryption ## Basic Information - **Project Name**: ft-encryption - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-07-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Ft-Encryption a handy wrapper around node's `crypto` service ## usage ```` const Encryption = require('ft-encryption'); let encryption = new Encryption('aes192', 'secret'); let str = encryption.encrypt({key: 'value'}); let obj = encryption.decrypt(str); // {key: 'value'} ```` supports all algorythms, tha node's `crypto` supports