feat: add multi-format encoding engine with step-by-step visualization - #1678
feat: add multi-format encoding engine with step-by-step visualization#1678karan-chaos wants to merge 1 commit into
Conversation
Interactive multi-format encoder/decoder supporting Base64, Base32, Hex, Binary, URL encoding, ASCII, ROT13, and Decimal with step-by-step visualization of bit manipulation and mapping. Includes 40+ unit tests covering round-trip correctness, error handling, and size analysis. 🤖 Generated with Codebuff Co-Authored-By: Codebuff <noreply@codebuff.com>
|
@karan-chaos is attempting to deploy a commit to the csxark's projects Team on Vercel. A member of the Team first needs to authorize it. |
🎉 Thank You for Your ContributionHello @karan-chaos, Thank you for submitting a Pull Request to CryptoViz. We appreciate the time and effort you've invested in contributing to the project. Your Pull Request has been received successfully and will be reviewed by the maintainers as soon as possible. 📋 Pull Request Checklist
Ensuring these requirements are met helps streamline the review process and enables maintainers to review your contribution more efficiently. ❤️ Support CryptoVizIf you find CryptoViz helpful, consider supporting the project by:
Your support helps increase the project's visibility and encourages continued development. Thank you for being a part of the CryptoViz community! Thank you once again for contributing to CryptoViz. We appreciate your support and look forward to reviewing your contribution. |
|
Warning Review limit reachedNext included review available in 42 minutes. View limit detailsLimit details: You’ve used the included review currently available. You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. Review configuration: ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (4)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Summary
Resolves #1677
This PR introduces a complete multi-format encoding and decoding engine with
support for eight common formats and detailed step-by-step transformation
visualization.
The feature includes interactive format selection, expandable encoding
breakdowns, bit manipulation visualization, format information panels, and a
quick reference guide.
Changes
Encoding Engine
Added encode and decode support for:
Step-by-Step Visualization
Added detailed transformation breakdowns showing:
Interactive UI
Added a React interface featuring:
Format Information
Added metadata for supported formats, including:
Validation & Error Handling
Added input validation and error handling for unsupported or malformed
encoded values.
Testing
Added 40+ unit tests covering:
Verification