@vatsdev/encryption-decryption-poc
v1.0.1
Published
A TypeScript library for secure encryption and decryption using Google Cloud KMS and Secret Manager
Downloads
6
Maintainers
Readme
Field-Level Encryption Service
A TypeScript-based service that provides field-level encryption capabilities using Google Cloud KMS and Secret Manager.
Features
- Field-level encryption for sensitive data
- Integration with Google Cloud KMS for key management
- Secure storage of encrypted data encryption keys (DEKs) in Google Cloud Secret Manager
- Support for multiple encryption algorithms (AES-256-GCM, AES-256-CBC)
- Automatic key rotation and versioning
- Comprehensive error handling and validation
Prerequisites
- Node.js (v14 or higher)
- TypeScript
- Google Cloud Platform account with:
- Cloud KMS enabled
- Secret Manager enabled
- Appropriate IAM permissions
- Environment variables:
GOOGLE_CLOUD_PROJECT: Your GCP project IDGOOGLE_APPLICATION_CREDENTIALS: Path to your service account key file
Project Structure
src/
├── services/
│ ├── encryptionService.ts # Core encryption service
│ ├── kmsService.ts # Google Cloud KMS integration
│ └── secretManagerService.ts # Google Cloud Secret Manager integration
├── types/
│ └── errors.ts # Custom error types and codes
└── utils/
└── encryptionUtils.ts # Encryption utility functionsCore Components
Encryption Service (encryptionService.ts)
- Handles field-level encryption and decryption
- Manages data encryption keys (DEKs)
- Supports multiple encryption algorithms
- Provides key rotation capabilities
KMS Service (kmsService.ts)
- Manages encryption keys in Google Cloud KMS
- Handles key creation and rotation
- Provides key metadata management
Secret Manager Service (secretManagerService.ts)
- Stores encrypted DEKs securely
- Manages secret versions
- Handles secret retrieval and updates
Error Handling
The service implements a comprehensive error handling system with custom error types:
ConfigurationError: For initialization and configuration issuesEncryptionError: For encryption/decryption failuresValidationError: For input validation failures
Each error type includes specific error codes for better error tracking and handling.
Usage Example
Parameters
modelName (string)
The key identifier used in your encryption.json configuration file. This should match the model name you've configured for encryption.
sensitiveData (string)
The data you want to encrypt. This can be any string value that needs to be protected.
entityKeyDetails (object)
An object containing all required fields for encryption and decryption operations:
interface EntityKeyDetails {
locationId: string | null; // Google Cloud KMS location ID
keyRingId: string | null; // KMS key ring identifier
keyId: string | null; // KMS key identifier
secretId: string | null; // Secret Manager secret ID
encryptedDEK?: Buffer | null; // Encrypted Data Encryption Key
keyVersion: string | null; // KMS key version
}Example Usage
import encryptionService from './services/encryptionService';
// Encrypt a field
const encryptedField = await encryptionService.encryptField(
'model-name',
'sensitive-data',
entityKeyDetails
);
// Decrypt a field
const decryptedField = await encryptionService.decryptField(
'model-name',
'encrypted-data',
entityKeyDetails
);Security Considerations
- All encryption keys are managed by Google Cloud KMS
- DEKs are encrypted before storage
- Automatic key rotation is supported
- Input validation and sanitization
- Comprehensive error handling
- No sensitive data in logs
Development
- Clone the repository
- Install dependencies:
npm install - Set up environment variables
- Run tests:
npm test
Error Codes
Configuration Errors
CONFIGURATION_MISSING_CONFIG: Required configuration is missingCONFIGURATION_MISSING_ENV_VAR: Required environment variable is missingCONFIGURATION_INITIALIZATION_ERROR: Service initialization failed
Encryption Errors
ENCRYPTION_FIELD_ENCRYPTION_ERROR: Field encryption failedENCRYPTION_FIELD_DECRYPTION_ERROR: Field decryption failedENCRYPTION_DEK_RESOLUTION_ERROR: DEK resolution failedENCRYPTION_DEK_DECRYPTION_ERROR: DEK decryption failedENCRYPTION_DEK_ENCRYPTION_ERROR: DEK encryption failedENCRYPTION_SECRET_RETRIEVAL_ERROR: Secret retrieval failedENCRYPTION_UNKNOWN_ERROR: Unknown encryption errorENCRYPTION_KEY_DETAILS_ERROR: Key details retrieval failedENCRYPTION_KEY_VERSION_ERROR: Key version errorENCRYPTION_KEY_CREATION_ERROR: Key creation failedENCRYPTION_CREATION_ERROR: General creation error
Validation Errors
VALIDATION_MISSING_REQUIRED_FIELD: Required field is missingVALIDATION_INVALID_DEK: Invalid DEK format or content
License
MIT
