-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.json
More file actions
2377 lines (2377 loc) · 78.3 KB
/
tools.json
File metadata and controls
2377 lines (2377 loc) · 78.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"site": {
"name": "CipherKit",
"domain": "https://cipherkit.app",
"tagline": "Developer Cryptography & Utility Tools",
"description": "85 free online developer tools. AES, RSA, SHA, JWT, Base64, JSON, image tools, HEIC converter, format converters, DNS lookup — all client-side, no server.",
"github": "https://github.com/karthickajan/cipherkit"
},
"categories": [
{
"id": "crypto",
"label": "Crypto Hub",
"icon": "🔐",
"description": "Encryption, decryption, and hashing tools"
},
{
"id": "encoding",
"label": "Encoding Hub",
"icon": "📦",
"description": "Encoding, decoding, and data format tools"
},
{
"id": "dev",
"label": "Dev Hub",
"icon": "⚙️",
"description": "Developer utilities and generators"
},
{
"id": "converter",
"label": "Converter Hub",
"icon": "🔄",
"description": "Data format conversion and file transformation tools"
},
{
"id": "image",
"label": "Image Hub",
"icon": "🖼️",
"description": "Image editing, conversion, and visual tools"
}
],
"tools": [
{
"slug": "aes-encryption",
"title": "AES Encryption Tool",
"pageTitle": "AES Encryption Tool – Encrypt Text Online | CipherKit",
"metaDescription": "Free online AES encryption tool. Encrypt text using AES-128, AES-192, or AES-256 with CBC, ECB, CTR, OFB, and CFB modes directly in your browser. No data leaves your device.",
"h1": "AES Encryption Tool",
"tagline": "Encrypt text with AES-128, 192, or 256-bit keys — 100% client-side",
"category": "crypto",
"hub": "Crypto Hub",
"tags": [
"aes",
"encryption",
"cipher",
"symmetric",
"aes-256",
"aes-128"
],
"relatedTools": [
"aes-decryption",
"hmac-generator",
"rsa-key-generator",
"sha256-generator"
],
"jsFile": "aes-encryption.js",
"vendorJs": [
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js",
"integrity": "sha512-a+SUDuwNzXDvz4XrIcXHuCf089/iJAoN4lmrXJg18XnduKK6YlDHNRalv4yd1N40OKI80tFidF+rqTFKGPoWFQ==",
"crossorigin": "anonymous"
}
],
"phase": 2,
"status": "ready",
"priority": 1
},
{
"slug": "aes-decryption",
"title": "AES Decryption Tool",
"pageTitle": "AES Decryption Tool – Decrypt AES Ciphertext Online | CipherKit",
"metaDescription": "Free online AES decryption tool. Decrypt AES-128, AES-192, or AES-256 ciphertext with CBC, ECB, CTR, OFB, and CFB modes directly in your browser.",
"h1": "AES Decryption Tool",
"tagline": "Decrypt AES-encrypted ciphertext — supports Base64 and Hex input",
"category": "crypto",
"hub": "Crypto Hub",
"tags": [
"aes",
"decryption",
"cipher",
"symmetric",
"aes-256",
"decrypt"
],
"relatedTools": [
"aes-encryption",
"hmac-generator",
"rsa-key-generator"
],
"jsFile": "aes-decryption.js",
"vendorJs": [
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js",
"integrity": "sha512-a+SUDuwNzXDvz4XrIcXHuCf089/iJAoN4lmrXJg18XnduKK6YlDHNRalv4yd1N40OKI80tFidF+rqTFKGPoWFQ==",
"crossorigin": "anonymous"
}
],
"phase": 2,
"status": "ready",
"priority": 2
},
{
"slug": "sha256-generator",
"title": "SHA-256 Hash Generator",
"pageTitle": "SHA-256 Hash Generator – Generate SHA256 Online | CipherKit",
"metaDescription": "Free online SHA-256 hash generator. Generate SHA-256 hashes from any text or string instantly in your browser. Supports Hex and Base64 output.",
"h1": "SHA-256 Hash Generator",
"tagline": "Generate SHA-256 cryptographic hashes instantly — Hex or Base64 output",
"category": "crypto",
"hub": "Crypto Hub",
"tags": [
"sha256",
"sha-256",
"hash",
"checksum",
"cryptographic hash"
],
"relatedTools": [
"sha512-generator",
"md5-generator",
"hmac-generator",
"hash-comparator"
],
"jsFile": "sha256-generator.js",
"vendorJs": [
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js",
"integrity": "sha512-a+SUDuwNzXDvz4XrIcXHuCf089/iJAoN4lmrXJg18XnduKK6YlDHNRalv4yd1N40OKI80tFidF+rqTFKGPoWFQ==",
"crossorigin": "anonymous"
}
],
"phase": 2,
"status": "ready",
"priority": 3
},
{
"slug": "sha512-generator",
"title": "SHA-512 Hash Generator",
"pageTitle": "SHA-512 Hash Generator – Generate SHA512 Online | CipherKit",
"metaDescription": "Free online SHA-512 hash generator. Generate SHA-512 hashes from any text or string in your browser. No data is sent to any server.",
"h1": "SHA-512 Hash Generator",
"tagline": "Generate SHA-512 cryptographic hashes — stronger than SHA-256",
"category": "crypto",
"hub": "Crypto Hub",
"tags": [
"sha512",
"sha-512",
"hash",
"checksum",
"cryptographic hash"
],
"relatedTools": [
"sha256-generator",
"md5-generator",
"hmac-generator",
"hash-comparator"
],
"jsFile": "sha512-generator.js",
"vendorJs": [
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js",
"integrity": "sha512-a+SUDuwNzXDvz4XrIcXHuCf089/iJAoN4lmrXJg18XnduKK6YlDHNRalv4yd1N40OKI80tFidF+rqTFKGPoWFQ==",
"crossorigin": "anonymous"
}
],
"phase": 2,
"status": "ready",
"priority": 4
},
{
"slug": "sha1-generator",
"title": "SHA-1 Hash Generator",
"pageTitle": "SHA-1 Hash Generator – Generate SHA1 Hash Online | CipherKit",
"metaDescription": "Free online SHA-1 hash generator. Generate SHA-1 hashes from any text string directly in your browser. Note: SHA-1 is deprecated for security use.",
"h1": "SHA-1 Hash Generator",
"tagline": "Generate SHA-1 hashes — for legacy compatibility checks",
"category": "crypto",
"hub": "Crypto Hub",
"tags": [
"sha1",
"sha-1",
"hash",
"checksum"
],
"relatedTools": [
"sha256-generator",
"sha512-generator",
"md5-generator"
],
"jsFile": "sha1-generator.js",
"vendorJs": [
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js",
"integrity": "sha512-a+SUDuwNzXDvz4XrIcXHuCf089/iJAoN4lmrXJg18XnduKK6YlDHNRalv4yd1N40OKI80tFidF+rqTFKGPoWFQ==",
"crossorigin": "anonymous"
}
],
"phase": 2,
"status": "ready",
"priority": 5
},
{
"slug": "sha3-generator",
"title": "SHA-3 Hash Generator",
"pageTitle": "SHA-3 Hash Generator – Generate SHA3 Hash Online | CipherKit",
"metaDescription": "Free online SHA-3 (Keccak) hash generator. Generate SHA-3 256-bit or 512-bit hashes from any text directly in your browser.",
"h1": "SHA-3 Hash Generator",
"tagline": "Generate SHA-3 (Keccak) hashes — the NIST standard successor",
"category": "crypto",
"hub": "Crypto Hub",
"tags": [
"sha3",
"sha-3",
"keccak",
"hash",
"nist"
],
"relatedTools": [
"sha256-generator",
"sha512-generator",
"md5-generator"
],
"jsFile": "sha3-generator.js",
"vendorJs": [
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js",
"integrity": "sha512-a+SUDuwNzXDvz4XrIcXHuCf089/iJAoN4lmrXJg18XnduKK6YlDHNRalv4yd1N40OKI80tFidF+rqTFKGPoWFQ==",
"crossorigin": "anonymous"
}
],
"phase": 2,
"status": "ready",
"priority": 6
},
{
"slug": "md5-generator",
"title": "MD5 Hash Generator",
"pageTitle": "MD5 Hash Generator – Generate MD5 Checksum Online | CipherKit",
"metaDescription": "Free online MD5 hash generator. Generate MD5 checksums from any text or string instantly in your browser. Widely used for file integrity checks.",
"h1": "MD5 Hash Generator",
"tagline": "Generate MD5 checksums — fast, widely supported, not for passwords",
"category": "crypto",
"hub": "Crypto Hub",
"tags": [
"md5",
"hash",
"checksum",
"md5 generator",
"md5 checksum"
],
"relatedTools": [
"sha256-generator",
"sha512-generator",
"hash-comparator",
"checksum-generator"
],
"jsFile": "md5-generator.js",
"vendorJs": [
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js",
"integrity": "sha512-a+SUDuwNzXDvz4XrIcXHuCf089/iJAoN4lmrXJg18XnduKK6YlDHNRalv4yd1N40OKI80tFidF+rqTFKGPoWFQ==",
"crossorigin": "anonymous"
}
],
"phase": 2,
"status": "ready",
"priority": 7
},
{
"slug": "ripemd160-generator",
"title": "RIPEMD-160 Hash Generator",
"pageTitle": "RIPEMD-160 Hash Generator – Generate RIPEMD160 Online | CipherKit",
"metaDescription": "Free online RIPEMD-160 hash generator. Generate RIPEMD-160 cryptographic hashes in your browser. Commonly used in Bitcoin addresses.",
"h1": "RIPEMD-160 Hash Generator",
"tagline": "Generate RIPEMD-160 hashes — used in Bitcoin address generation",
"category": "crypto",
"hub": "Crypto Hub",
"tags": [
"ripemd160",
"ripemd-160",
"hash",
"bitcoin hash"
],
"relatedTools": [
"sha256-generator",
"sha512-generator",
"md5-generator"
],
"jsFile": "ripemd160-generator.js",
"vendorJs": [
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js",
"integrity": "sha512-a+SUDuwNzXDvz4XrIcXHuCf089/iJAoN4lmrXJg18XnduKK6YlDHNRalv4yd1N40OKI80tFidF+rqTFKGPoWFQ==",
"crossorigin": "anonymous"
}
],
"phase": 2,
"status": "ready",
"priority": 8
},
{
"slug": "hmac-generator",
"title": "HMAC Generator",
"pageTitle": "HMAC Generator – Generate HMAC-SHA256, HMAC-SHA512 Online | CipherKit",
"metaDescription": "Free online HMAC generator. Generate HMAC-SHA256, HMAC-SHA512, HMAC-SHA1, and HMAC-MD5 message authentication codes directly in your browser.",
"h1": "HMAC Generator",
"tagline": "Generate HMAC message authentication codes — SHA256, SHA512, SHA1, MD5",
"category": "crypto",
"hub": "Crypto Hub",
"tags": [
"hmac",
"hmac-sha256",
"hmac-sha512",
"mac",
"message authentication"
],
"relatedTools": [
"sha256-generator",
"sha512-generator",
"aes-encryption",
"hash-comparator"
],
"jsFile": "hmac-generator.js",
"vendorJs": [
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js",
"integrity": "sha512-a+SUDuwNzXDvz4XrIcXHuCf089/iJAoN4lmrXJg18XnduKK6YlDHNRalv4yd1N40OKI80tFidF+rqTFKGPoWFQ==",
"crossorigin": "anonymous"
}
],
"phase": 2,
"status": "ready",
"priority": 9
},
{
"slug": "rsa-key-generator",
"title": "RSA Key Pair Generator",
"pageTitle": "RSA Key Pair Generator – Generate RSA Public & Private Keys Online | CipherKit",
"metaDescription": "Free online RSA key pair generator. Generate RSA 2048-bit or 4096-bit public and private key pairs in PKCS#8 format directly in your browser.",
"h1": "RSA Key Pair Generator",
"tagline": "Generate RSA public & private key pairs — 1024, 2048, or 4096-bit",
"category": "crypto",
"hub": "Crypto Hub",
"tags": [
"rsa",
"rsa key",
"public key",
"private key",
"asymmetric encryption",
"pkcs8"
],
"relatedTools": [
"rsa-encrypt-decrypt",
"aes-encryption",
"hmac-generator"
],
"jsFile": "rsa-key-generator.js",
"phase": 2,
"status": "ready",
"priority": 10
},
{
"slug": "hash-comparator",
"title": "Hash Comparator & Verifier",
"pageTitle": "Hash Comparator – Verify and Compare Hash Values Online | CipherKit",
"metaDescription": "Free online hash comparator. Verify and compare MD5, SHA-256, SHA-512 hash values. Check file integrity or verify password hashes instantly.",
"h1": "Hash Comparator & Verifier",
"tagline": "Compare and verify hash values — MD5, SHA-256, SHA-512 and more",
"category": "crypto",
"hub": "Crypto Hub",
"tags": [
"hash comparator",
"hash verifier",
"compare hash",
"verify hash",
"checksum verify"
],
"relatedTools": [
"sha256-generator",
"md5-generator",
"checksum-generator"
],
"jsFile": "hash-comparator.js",
"phase": 2,
"status": "ready",
"priority": 11
},
{
"slug": "checksum-generator",
"title": "Checksum Generator",
"pageTitle": "Checksum Generator – Generate File Checksums Online | CipherKit",
"metaDescription": "Free online checksum generator. Generate MD5, SHA-1, SHA-256, and SHA-512 checksums from text input directly in your browser.",
"h1": "Checksum Generator",
"tagline": "Generate checksums for data integrity verification",
"category": "crypto",
"hub": "Crypto Hub",
"tags": [
"checksum",
"checksum generator",
"file checksum",
"data integrity"
],
"relatedTools": [
"md5-generator",
"sha256-generator",
"hash-comparator"
],
"jsFile": "checksum-generator.js",
"vendorJs": [
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js",
"integrity": "sha512-a+SUDuwNzXDvz4XrIcXHuCf089/iJAoN4lmrXJg18XnduKK6YlDHNRalv4yd1N40OKI80tFidF+rqTFKGPoWFQ==",
"crossorigin": "anonymous"
}
],
"phase": 2,
"status": "ready",
"priority": 12
},
{
"slug": "base64-encode",
"title": "Base64 Encoder",
"pageTitle": "Base64 Encoder – Encode Text to Base64 Online | CipherKit",
"metaDescription": "Free online Base64 encoder. Encode any text or string to Base64 format instantly in your browser. Supports standard and URL-safe Base64.",
"h1": "Base64 Encoder",
"tagline": "Encode text or binary data to Base64 — standard and URL-safe variants",
"category": "encoding",
"hub": "Encoding Hub",
"tags": [
"base64",
"base64 encode",
"base64 encoder",
"encode base64"
],
"relatedTools": [
"base64-decode",
"url-encode",
"hex-encode",
"binary-encode"
],
"jsFile": "base64-encode.js",
"phase": 3,
"status": "ready",
"priority": 13
},
{
"slug": "base64-decode",
"title": "Base64 Decoder",
"pageTitle": "Base64 Decoder – Decode Base64 to Text Online | CipherKit",
"metaDescription": "Free online Base64 decoder. Decode Base64 encoded strings back to readable text instantly in your browser. Supports standard and URL-safe Base64.",
"h1": "Base64 Decoder",
"tagline": "Decode Base64 strings back to plain text or binary data",
"category": "encoding",
"hub": "Encoding Hub",
"tags": [
"base64",
"base64 decode",
"base64 decoder",
"decode base64"
],
"relatedTools": [
"base64-encode",
"url-decode",
"hex-decode",
"binary-decode"
],
"jsFile": "base64-decode.js",
"phase": 3,
"status": "ready",
"priority": 14
},
{
"slug": "url-encode",
"title": "URL Encoder",
"pageTitle": "URL Encoder – Encode URLs and Query Strings Online | CipherKit",
"metaDescription": "Free online URL encoder. Percent-encode URLs and query string parameters for use in web requests. Encode special characters instantly.",
"h1": "URL Encoder",
"tagline": "Percent-encode URLs and query strings for safe transmission",
"category": "encoding",
"hub": "Encoding Hub",
"tags": [
"url encode",
"url encoder",
"percent encode",
"urlencode",
"query string encode"
],
"relatedTools": [
"url-decode",
"base64-encode",
"html-encode"
],
"jsFile": "url-encode.js",
"phase": 3,
"status": "ready",
"priority": 15
},
{
"slug": "url-decode",
"title": "URL Decoder",
"pageTitle": "URL Decoder – Decode Percent-Encoded URLs Online | CipherKit",
"metaDescription": "Free online URL decoder. Decode percent-encoded URLs and query strings back to readable text instantly in your browser.",
"h1": "URL Decoder",
"tagline": "Decode percent-encoded URLs back to readable query strings",
"category": "encoding",
"hub": "Encoding Hub",
"tags": [
"url decode",
"url decoder",
"percent decode",
"urldecode"
],
"relatedTools": [
"url-encode",
"base64-decode",
"html-decode"
],
"jsFile": "url-decode.js",
"phase": 3,
"status": "ready",
"priority": 16
},
{
"slug": "html-encode",
"title": "HTML Entity Encoder",
"pageTitle": "HTML Entity Encoder – Encode HTML Special Characters Online | CipherKit",
"metaDescription": "Free online HTML entity encoder. Convert special characters like <, >, &, and quotes to HTML entities for safe display in web pages.",
"h1": "HTML Entity Encoder",
"tagline": "Escape HTML special characters to prevent XSS and display issues",
"category": "encoding",
"hub": "Encoding Hub",
"tags": [
"html encode",
"html entities",
"html escape",
"xss prevention"
],
"relatedTools": [
"html-decode",
"url-encode",
"base64-encode"
],
"jsFile": "html-encode.js",
"phase": 3,
"status": "ready",
"priority": 17
},
{
"slug": "html-decode",
"title": "HTML Entity Decoder",
"pageTitle": "HTML Entity Decoder – Decode HTML Entities Online | CipherKit",
"metaDescription": "Free online HTML entity decoder. Convert HTML entities like &, <, > back to their original characters instantly.",
"h1": "HTML Entity Decoder",
"tagline": "Decode HTML entities back to their original characters",
"category": "encoding",
"hub": "Encoding Hub",
"tags": [
"html decode",
"html entities decode",
"html unescape"
],
"relatedTools": [
"html-encode",
"url-decode",
"base64-decode"
],
"jsFile": "html-decode.js",
"phase": 3,
"status": "ready",
"priority": 18
},
{
"slug": "hex-encode",
"title": "Hex Encoder",
"pageTitle": "Hex Encoder – Convert Text to Hexadecimal Online | CipherKit",
"metaDescription": "Free online hex encoder. Convert plain text or ASCII strings to hexadecimal representation instantly in your browser.",
"h1": "Hex Encoder",
"tagline": "Convert text to hexadecimal — useful for debugging and binary inspection",
"category": "encoding",
"hub": "Encoding Hub",
"tags": [
"hex encode",
"text to hex",
"hexadecimal encoder",
"ascii to hex"
],
"relatedTools": [
"hex-decode",
"base64-encode",
"binary-encode"
],
"jsFile": "hex-encode.js",
"phase": 3,
"status": "ready",
"priority": 19
},
{
"slug": "hex-decode",
"title": "Hex Decoder",
"pageTitle": "Hex Decoder – Convert Hexadecimal to Text Online | CipherKit",
"metaDescription": "Free online hex decoder. Convert hexadecimal strings back to plain text or ASCII instantly in your browser.",
"h1": "Hex Decoder",
"tagline": "Decode hexadecimal strings back to plain text",
"category": "encoding",
"hub": "Encoding Hub",
"tags": [
"hex decode",
"hex to text",
"hexadecimal decoder",
"hex to ascii"
],
"relatedTools": [
"hex-encode",
"base64-decode",
"binary-decode"
],
"jsFile": "hex-decode.js",
"phase": 3,
"status": "ready",
"priority": 20
},
{
"slug": "binary-encode",
"title": "Binary Encoder",
"pageTitle": "Binary Encoder – Convert Text to Binary Online | CipherKit",
"metaDescription": "Free online binary encoder. Convert plain text to binary (0s and 1s) representation instantly in your browser.",
"h1": "Binary Encoder",
"tagline": "Convert text to binary representation — byte by byte",
"category": "encoding",
"hub": "Encoding Hub",
"tags": [
"binary encode",
"text to binary",
"binary converter",
"ascii to binary"
],
"relatedTools": [
"binary-decode",
"hex-encode",
"base64-encode"
],
"jsFile": "binary-encode.js",
"phase": 3,
"status": "ready",
"priority": 21
},
{
"slug": "binary-decode",
"title": "Binary Decoder",
"pageTitle": "Binary Decoder – Convert Binary to Text Online | CipherKit",
"metaDescription": "Free online binary decoder. Convert binary strings (0s and 1s) back to readable text instantly in your browser.",
"h1": "Binary Decoder",
"tagline": "Decode binary strings back to readable text",
"category": "encoding",
"hub": "Encoding Hub",
"tags": [
"binary decode",
"binary to text",
"binary converter"
],
"relatedTools": [
"binary-encode",
"hex-decode",
"base64-decode"
],
"jsFile": "binary-decode.js",
"phase": 3,
"status": "ready",
"priority": 22
},
{
"slug": "json-formatter",
"title": "JSON Formatter & Validator",
"pageTitle": "JSON Formatter & Validator – Format and Validate JSON Online | CipherKit",
"metaDescription": "Free online JSON formatter and validator. Beautify, format, and validate JSON data instantly. Supports syntax highlighting and error detection.",
"h1": "JSON Formatter & Validator",
"tagline": "Beautify and validate JSON data — with syntax highlighting and error detection",
"category": "encoding",
"hub": "Encoding Hub",
"tags": [
"json formatter",
"json validator",
"json beautifier",
"format json",
"json pretty print"
],
"relatedTools": [
"json-minifier",
"xml-json-converter",
"csv-json-converter",
"yaml-json-converter"
],
"jsFile": "json-formatter.js",
"phase": 3,
"status": "ready",
"priority": 23
},
{
"slug": "json-minifier",
"title": "JSON Minifier",
"pageTitle": "JSON Minifier – Minify and Compress JSON Online | CipherKit",
"metaDescription": "Free online JSON minifier. Compress and minify JSON data by removing whitespace and formatting. Reduce JSON payload size instantly.",
"h1": "JSON Minifier",
"tagline": "Minify JSON by removing whitespace — reduce payload size",
"category": "encoding",
"hub": "Encoding Hub",
"tags": [
"json minifier",
"json minify",
"compress json",
"json compressor"
],
"relatedTools": [
"json-formatter",
"xml-json-converter"
],
"jsFile": "json-minifier.js",
"phase": 3,
"status": "ready",
"priority": 24
},
{
"slug": "xml-json-converter",
"title": "XML to JSON Converter",
"pageTitle": "XML to JSON Converter – Convert XML to JSON Online | CipherKit",
"metaDescription": "Free online XML to JSON converter. Convert XML data to JSON format instantly in your browser. No file upload required.",
"h1": "XML to JSON Converter",
"tagline": "Convert XML data to JSON format — fast, free, client-side",
"category": "converter",
"hub": "Converter Hub",
"tags": [
"xml to json",
"xml json converter",
"convert xml",
"xml parser"
],
"relatedTools": [
"json-xml-converter",
"json-formatter",
"csv-json-converter"
],
"jsFile": "xml-json-converter.js",
"phase": 3,
"status": "ready",
"priority": 25
},
{
"slug": "json-xml-converter",
"title": "JSON to XML Converter",
"pageTitle": "JSON to XML Converter – Convert JSON to XML Online | CipherKit",
"metaDescription": "Free online JSON to XML converter. Convert JSON data to XML format instantly in your browser.",
"h1": "JSON to XML Converter",
"tagline": "Convert JSON data to XML format — browser-based, no server",
"category": "converter",
"hub": "Converter Hub",
"tags": [
"json to xml",
"json xml converter",
"convert json to xml"
],
"relatedTools": [
"xml-json-converter",
"json-formatter",
"json-minifier"
],
"jsFile": "json-xml-converter.js",
"phase": 3,
"status": "ready",
"priority": 26
},
{
"slug": "csv-json-converter",
"title": "CSV to JSON Converter",
"pageTitle": "CSV to JSON Converter – Convert CSV Data to JSON Online | CipherKit",
"metaDescription": "Free online CSV to JSON converter. Convert CSV files or comma-separated data to JSON format instantly in your browser.",
"h1": "CSV to JSON Converter",
"tagline": "Convert CSV data to JSON — paste your CSV, get instant JSON",
"category": "converter",
"hub": "Converter Hub",
"tags": [
"csv to json",
"csv json converter",
"convert csv",
"csv parser"
],
"relatedTools": [
"json-formatter",
"xml-json-converter",
"yaml-json-converter"
],
"jsFile": "csv-json-converter.js",
"phase": 3,
"status": "ready",
"priority": 27
},
{
"slug": "yaml-json-converter",
"title": "YAML to JSON Converter",
"pageTitle": "YAML to JSON Converter – Convert YAML to JSON Online | CipherKit",
"metaDescription": "Free online YAML to JSON converter. Convert YAML configuration files or data to JSON format instantly in your browser.",
"h1": "YAML to JSON Converter",
"tagline": "Convert YAML to JSON — for config files, CI/CD, and API schemas",
"category": "converter",
"hub": "Converter Hub",
"tags": [
"yaml to json",
"yaml json",
"convert yaml",
"yaml parser"
],
"relatedTools": [
"json-formatter",
"xml-json-converter",
"csv-json-converter"
],
"jsFile": "yaml-json-converter.js",
"phase": 3,
"status": "ready",
"priority": 28
},
{
"slug": "jwt-decoder",
"title": "JWT Decoder & Inspector",
"pageTitle": "JWT Decoder – Decode and Inspect JWT Tokens Online | CipherKit",
"metaDescription": "Free online JWT decoder. Decode and inspect JSON Web Tokens (JWT) — view header, payload, and signature claims instantly without a secret key.",
"h1": "JWT Decoder & Inspector",
"tagline": "Decode and inspect JWT tokens — header, payload, claims at a glance",
"category": "dev",
"hub": "Dev Hub",
"tags": [
"jwt decoder",
"jwt",
"json web token",
"decode jwt",
"jwt inspector"
],
"relatedTools": [
"jwt-encoder",
"hmac-generator",
"base64-decode"
],
"jsFile": "jwt-decoder.js",
"phase": 4,
"status": "ready",
"priority": 29
},
{
"slug": "jwt-encoder",
"title": "JWT Encoder",
"pageTitle": "JWT Encoder – Create and Sign JWT Tokens Online | CipherKit",
"metaDescription": "Free online JWT encoder. Create and sign JSON Web Tokens (JWT) with HS256, HS384, or HS512 directly in your browser.",
"h1": "JWT Encoder",
"tagline": "Create and sign JWT tokens with custom claims and headers",
"category": "dev",
"hub": "Dev Hub",
"tags": [
"jwt encoder",
"jwt",
"create jwt",
"sign jwt",
"json web token generator"
],
"relatedTools": [
"jwt-decoder",
"hmac-generator",
"base64-encode"
],
"jsFile": "jwt-encoder.js",
"phase": 4,
"status": "ready",
"priority": 30
},
{
"slug": "uuid-generator",
"title": "UUID / GUID Generator",
"pageTitle": "UUID Generator – Generate UUID v4, v1, and GUID Online | CipherKit",
"metaDescription": "Free online UUID and GUID generator. Generate UUID v1, v4, and bulk UUIDs instantly in your browser. Cryptographically secure random generation.",
"h1": "UUID / GUID Generator",
"tagline": "Generate UUID v4, v1, and bulk UUIDs — cryptographically secure",
"category": "dev",
"hub": "Dev Hub",
"tags": [
"uuid generator",
"guid generator",
"uuid v4",
"unique id",
"uuid online"
],
"relatedTools": [
"random-string-generator",
"random-password-generator"
],
"jsFile": "uuid-generator.js",
"phase": 4,
"status": "ready",
"priority": 31
},
{
"slug": "random-password-generator",
"title": "Random Password Generator",
"pageTitle": "Random Password Generator – Generate Strong Passwords Online | CipherKit",
"metaDescription": "Free online random password generator. Generate strong, cryptographically secure passwords with custom length, uppercase, lowercase, numbers, and symbols.",
"h1": "Random Password Generator",
"tagline": "Generate strong, cryptographically secure passwords — customizable length and charset",
"category": "dev",
"hub": "Dev Hub",
"tags": [
"password generator",
"random password",
"strong password",
"secure password generator"
],
"relatedTools": [
"random-string-generator",
"uuid-generator",
"hmac-generator"
],
"jsFile": "random-password-generator.js",
"phase": 4,
"status": "ready",
"priority": 32
},
{
"slug": "random-string-generator",
"title": "Random String Generator",
"pageTitle": "Random String Generator – Generate Random Strings Online | CipherKit",
"metaDescription": "Free online random string generator. Generate random alphanumeric strings, API keys, tokens, and secrets with custom length and character sets.",
"h1": "Random String Generator",
"tagline": "Generate random strings, API keys, and tokens — custom length and charset",
"category": "dev",
"hub": "Dev Hub",
"tags": [
"random string generator",
"random string",
"api key generator",
"token generator"
],
"relatedTools": [
"random-password-generator",
"uuid-generator"
],
"jsFile": "random-string-generator.js",
"phase": 4,
"status": "ready",
"priority": 33
},
{
"slug": "unix-timestamp-converter",
"title": "Unix Timestamp Converter",
"pageTitle": "Unix Timestamp Converter – Convert Unix Time to Date Online | CipherKit",
"metaDescription": "Free online Unix timestamp converter. Convert Unix timestamps to human-readable dates and vice versa. Supports UTC and local time zones.",
"h1": "Unix Timestamp Converter",
"tagline": "Convert Unix timestamps to dates and dates to timestamps — with timezone support",
"category": "dev",
"hub": "Dev Hub",
"tags": [
"unix timestamp",
"epoch converter",
"timestamp converter",
"unix time",
"epoch time"
],
"relatedTools": [
"uuid-generator",
"random-string-generator"
],
"jsFile": "unix-timestamp-converter.js",
"phase": 4,
"status": "ready",
"priority": 34
},
{
"slug": "cron-expression-generator",
"title": "Cron Expression Generator",
"pageTitle": "Cron Expression Generator – Build Cron Schedules Online | CipherKit",
"metaDescription": "Free online cron expression generator. Build cron job schedules visually with a simple UI. Supports standard and non-standard cron syntax.",
"h1": "Cron Expression Generator",
"tagline": "Build and validate cron expressions visually — no syntax memorization needed",
"category": "dev",
"hub": "Dev Hub",
"tags": [
"cron generator",
"cron expression",
"cron job",
"cron schedule",
"crontab generator"
],
"relatedTools": [
"cron-expression-explainer",
"unix-timestamp-converter"
],