Install, import, encrypt.

TypeScript SDK for field-level, audited encryption in minutes.

Start Free
10,000 free operations/month
Type-safe encryption
We never store your sensitive data
Lightweight and lightning fast
TypeScriptcipherline.ts
import Cipherline from 'cipherline';const cipherline = new Cipherline({   apiKey: 'YOUR-API-KEY' });const encrypted = await cipherline.encrypt({  name: 'John Doe',  ssn: '123-45-6789',  card: { brand: 'VISA', last4: '4242' }}, {  encrypt_keys: ['ssn', 'card'],  classification: 'pii'});const decrypted = await cipherline.decrypt(encrypted!, {  encrypt_keys: ['ssn', 'card']});