securemix 1.0.0
securemix: ^1.0.0 copied to clipboard
A production-grade, cryptographically secure password generator with mutation engine and CLI support for Dart and Flutter.
1.0.0 #
- Initial production release of
securemixfor Dart & Flutter by Innoartive Labs. - Cryptographically secure password generation powered by
Random.secure()(CSPRNG). - Rejection sampling implementation ensuring uniform character distribution without modulo bias.
- Anti-pattern intelligence automatically detecting sequential characters, keyboard walks, repeating characters, and common weak words.
- Password Mutation Engine (
SecureMix.enhance) using printable ASCII mirror code transformations. - Template-based pattern generation (
SecureMix.fromPattern). - Password evaluation (
SecureMix.evaluate) returning score (0-4), strength, and feedback. - Ergonomic
Stringextension methods (isStrong,isWeak,passwordScore,evaluate(),enhance()). - Built-in CLI tool executable via
dart run securemix. - Zero runtime dependencies.