Skip to content

Releases: dSunny90/SecureQueryItem

1.0.0

15 Aug 06:41

Choose a tag to compare

🔐 SecureQueryItem 1.0.0

What’s New
• First official release of SecureQueryItem as a Swift Package
• Supports field-level encryption for sensitive API query parameters
• Enables clear and secure distinction between public and encrypted values

Key Features
• 🛡️ Safe-by-default encoding
• 🔄 Automatically encrypts only the specified keys — no boilerplate needed
• 📦 SwiftPM compatible for easy integration

["username": .plain("Alice"), "password": .secure("1234")]

Why SecureQueryItem?

SecureQueryItem helps you avoid:
• Scattered and repetitive encryption logic
• Dangerous mistakes like misspelled keys ("passwod")
• Accidental exposure of sensitive values in logs or network requests

It provides a clear, declarative way to handle secure fields — simple, safe, and expressive.

Check the README for examples and setup instructions!