المشفّرات والتشفير
منشئ JWT (HS256)
Sign a JWT with HMAC-SHA256 — in your browser.
ملاحظة المحرر
Understanding · A signature, not a secret.
هذا الفصل المعمّق متاح حاليًا باللغة الإنجليزية فقط. أداة التحويل أعلاه تعمل بلغتك؛ أما المقال التفصيلي الطويل فلم تتم ترجمته بعد.
الأسئلة المتكررة
Quick answers.
›Is my secret key safe?
Yes. The hashing and signature generation take place entirely within your browser using the Web Crypto API. Your secret key is never sent to our servers.
›What is HS256?
HS256 stands for HMAC with SHA-256. It is a symmetric signing algorithm, meaning the same secret key is used to both create the signature and verify it later.
›Why is the output divided into three parts?
A JWT consists of a header, a payload, and a signature, each separated by a dot. They are Base64Url encoded to ensure they can be safely transmitted in HTTP headers or URLs.
›Can I use this for production tokens?
While technically valid, this tool is intended for debugging and development testing. For production environments, you should use standard libraries to automate token generation within your application code.
يبحث الأشخاص أيضًا عن
أدوات ذات صلة
More in this room.
- JWT Signer (احترافي)جميع الخوارزميات — HS / RS / ES / PS / EdDSA.
- فك ترميز JWTفك ترميز وفحص رموز JWT المميزة — محليًا، لا يتم تسجيلها أبدًا.
- تشفير / فك تشفير Base64تشفير وفك تشفير Base64 — آمن لليونيكود.
- ترميز / فك ترميز URLترميز وفك الترميز بالنسبة المئوية لعناوين URL بأمان.
- مولد التجزئة (SHA-1/256/384/512)SHA-1، SHA-256، SHA-384، SHA-512 — كلها في المتصفح.
- ترميز / فك ترميز كيانات HTMLهروب أو إلغاء هروب الأحرف الخاصة في HTML.