awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 مستودعات

Awesome GitHub RepositoriesBase64 Input Validators

Checks that a string contains only valid base64 characters and has a length multiple of 4 before decoding.

Distinct from Base64 Encoding and Decoding: Distinct from Base64 Encoding and Decoding: focuses specifically on input validation, not the encoding or decoding process itself.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Base64 Input Validators. Refine with filters or upvote what's useful.

Awesome Base64 Input Validators GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • humanwhocodes/computer-science-in-javascriptالصورة الرمزية لـ humanwhocodes

    humanwhocodes/computer-science-in-javascript

    9,119عرض على GitHub↗

    This is a collection of classic computer science algorithms and data structures implemented from scratch in JavaScript. The project provides reference implementations of fundamental concepts including sorting algorithms, binary search, linked lists, and binary search trees, all built as standalone pure functions with no external dependencies. The implementations cover a range of data structures, including singly-linked, doubly-linked, and circular linked lists with full traversal and mutation operations, as well as binary search trees supporting insertion, deletion, and search. Sorting algori

    Validates base64 input strings for correct character set and length before decoding.

    JavaScript
    عرض على GitHub↗9,119
  • any86/any-ruleالصورة الرمزية لـ any86

    any86/any-rule

    8,662عرض على GitHub↗

    Any-rule is a multi-platform regular expression tool that provides a curated catalog of over 70 ready-to-use patterns for validating and extracting common data formats. The project separates its static regex collection from editor-specific plugins, allowing the same pattern library to be accessed through VS Code, IntelliJ IDEA, Alfred Workflow, and a web interface. The tool enables keyword-based pattern retrieval, letting users search for the correct regex by typing descriptive terms rather than remembering exact syntax. It covers a broad range of validation needs including email addresses, U

    Provides a regex pattern that verifies a string is a valid base64-encoded data URI.

    TypeScriptawsomeexpressregex
    عرض على GitHub↗8,662
  • dankogai/js-base64الصورة الرمزية لـ dankogai

    dankogai/js-base64

    4,365عرض على GitHub↗

    js-base64 هي مكتبة JavaScript لترميز وفك ترميز البيانات بين تنسيق Base64 وسلاسل JavaScript أو مصفوفات البايت. توفر أدوات لتحويل البيانات الثنائية إلى سلاسل Base64 وتحويل تلك السلاسل مرة أخرى إلى نصها الأصلي أو تنسيق البايت الخام. يتضمن المشروع مدققاً لسلسلة Base64 للتحقق مما إذا كان التسلسل يتبع التنسيق الصحيح والحروف والحشو (padding). كما يدعم إنشاء سلاسل Base64 آمنة لـ URI عن طريق استبدال الحروف التي قد تسبب أخطاء ترميز في URIs ويسمح بإزالة الحشو. توفر المكتبة أداة امتداد للنموذج (prototype extension) تضيف طرق الترميز وفك الترميز مباشرة إلى كائنات السلسلة والمصفوفة القياسية في JavaScript.

    Verifies if a string is a valid Base64 sequence by checking characters and padding.

    JavaScript
    عرض على GitHub↗4,365
  1. Home
  2. Software Engineering & Architecture
  3. Base64 Encoding and Decoding
  4. Base64 Input Validators