Cryptify
Encryption & Decryption Services: Encrypt/decrypt data and files securely. Generate key pairs (private and public keys) Hashing & Verification: Generate and verify secure hashes for password storage and data integrity. Input Sanitization: Protect applications from injection attacks by sanitizing user input. Preventing XSS attacks.
Cryptify endpoints
| Method | Endpoint | Description |
|---|---|---|
| Encryption | ||
| POST |
Encrypt /api/encrypt |
Encrypts data using AES-GCM algorithm |
| POST |
Decrypt /api/decrypt |
Decrypts the encrypted data |
| POST |
EncryptFile /api/encrypt-file |
Encrypts the uploaded file using AES-GCM algorithm |
| POST |
DecryptFile /api/decrypt-file |
Decrypts the uploaded file |
| GET |
Generate Key Pair /api/generate-key-pair |
Key Pair Usage A key pair consists of a public key and a private key, used in asymmetric cryptography. The public key is shared openly, while the private key is kept secret. Key… |
| GET |
GenerateKey /api/generate-key |
Generates 256 bit AES key |
| Hash | ||
| POST |
Hash /api/hash |
Hashes the provided data using BCRYPT algorithm. Can be used for hashing user passwords before storing to database. |
| POST |
VerifyHash /api/verify-hash |
Matches the hash and the provided data using BCRYPT algorithm. Can be used for validating passwords. |
| Encode | ||
| POST |
Sanitize User Inputs /api/sanitize |
Description: The POST /sanitize endpoint processes input to remove potentially harmful content, such as malicious HTML tags, SQL injection patterns, or unsafe characters. It… |
Cryptify pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO | $19 / month | 300 / minute |
|
| ULTRA | Free | — |
|
| MEGA Recommended | $5 / month | — |
|