n1474335
55809b2e87
Merge branch 'feature/chacha' of https://github.com/joostrijneveld/CyberChef
2022-11-25 15:15:03 +00:00
n1474335
0fb3743b6d
Merge branch 'aes-cmac' of https://github.com/mikecat/CyberChef
2022-11-25 12:41:41 +00:00
n1474335
137f8d9471
Merge branch 'fix-fletcher-checksum' of https://github.com/mikecat/CyberChef
2022-11-25 12:37:24 +00:00
MikeCAT
39143fa6a1
add Shuffle operation
2022-11-11 22:26:41 +09:00
Joost Rijneveld
ebe2a29543
Add ChaCha stream cipher operation
2022-11-03 15:17:33 +01:00
MikeCAT
5b134d7e9e
fix Fletcher-32/64 Checksum
...
* Operate on words, not bytes
* Add tests
2022-11-02 21:54:45 +09:00
MikeCAT
c0bd6645ce
add new operation: CMAC
2022-11-02 02:07:16 +09:00
n1474335
d6344760ec
Merge branch 'master' of https://github.com/brun0ne/CyberChef
2022-10-14 18:45:47 +01:00
n1474335
a73decc792
Merge branch 'master' of https://github.com/gariev/CyberChef
2022-10-14 16:26:08 +01:00
Igor Gariev
026e9ca9c3
Added escape sequence "\a" (audible bell, 0x07) to Utils.parseEscapedChars().
...
The sequece is part of C and C++ standard, as well as protocol buffer encoding.
- https://en.wikipedia.org/wiki/Escape_sequences_in_C
- https://en.cppreference.com/w/cpp/language/escape
- https://developers.google.com/protocol-buffers/docs/text-format-spec#string
2022-09-28 20:32:21 -07:00
BrunonDEV
f1ce67d79b
Added NTLM operation
...
Hashing operation - MD4 on UTF16LE-encoded input
2022-09-27 23:13:22 +02:00
john19696
f450240094
Parameterise All hashes
2022-09-22 16:30:36 +01:00
n1474335
6b16f11d3b
Merge branch 'master' of https://github.com/valdelaseras/CyberChef
2022-07-08 17:02:06 +01:00
n1474335
c02c4a72e4
Merge branch 'add-lz-string' of https://github.com/crespyl/CyberChef
2022-07-08 16:23:15 +01:00
n1474335
45ede4beaf
Merge branch 'LS47Cipher' of https://github.com/n1073645/CyberChef
2022-07-08 15:41:16 +01:00
n1474335
99a0a05947
Merge branch 'caesarBoxCipher' of https://github.com/n1073645/CyberChef
2022-07-08 15:32:56 +01:00
n1474335
f751de896f
Merge branch 'base' of https://github.com/john19696/CyberChef
2022-07-08 14:55:20 +01:00
n1073645
fc91469807
Added nesting to Merge/Fork/Subsection
2022-06-17 09:26:00 +01:00
John L
906727f133
Base85 improvements
2022-06-14 10:23:13 +01:00
n1073645
3990ba774f
Implemented readelf-like functionality.
2022-06-05 18:35:02 +01:00
n1474335
1464e5d5e4
Merge branch 'pem' of https://github.com/cplussharp/CyberChef
2022-06-03 22:21:37 +01:00
n1474335
a895d1d82a
Added 'Parse TCP' operation
2022-05-30 18:06:15 +01:00
n1474335
31e9d27f1a
Merge branch 'master' of https://github.com/swesven/CyberChef into swesven-master
2022-03-29 17:30:22 +01:00
n1474335
a762fb4df4
Merge branch 'SIGABA' of https://github.com/hettysymes/CyberChef into hettysymes-SIGABA
2022-03-29 12:26:39 +01:00
n1474335
709b8696fc
Merge branch 'base45' of https://github.com/t-8ch/CyberChef into t-8ch-base45
2022-03-28 16:04:34 +01:00
n1474335
9733bf65de
Merge branch 'nodejs16' of https://github.com/john19696/CyberChef into john19696-nodejs16
2022-03-28 11:37:23 +01:00
Robin Scholtes
578a61d331
add cetacean cipher encoder and decoder operations, tests. Update .gitignore to exclude idea generated files
2022-01-17 23:37:24 +13:00
Thomas Weißschuh
6017578964
Add Base45 operations
...
Closes #1219
Co-developed-by: Cyril Delétré <cyril.deletre@gmail.com>
2021-11-09 21:12:44 +01:00
CPlusSharp
1dbcd2ac84
PEMtoHex: Support arbitrary PEMs
...
previous implementation only supported some PEMs (e.g. Certificate)
the new implementation is more general,
it just extracts the base64 between
header and footer and decodes that to hex
2021-11-07 11:21:17 +01:00
Peter Jacobs
671ae6558f
Added 'LZString Decompress' and 'LZString Compress' operations
2021-10-29 15:26:31 -05:00
n1474335
e9ca4dc9ca
Added HASSH operations
2021-08-10 16:48:35 +01:00
n1474335
289a417dfb
Added 'JA3S Fingerprint' operation
2021-08-10 14:57:34 +01:00
n1474335
9a33498fed
Added 'TLS JA3 Fingerprint' operation
2021-07-28 14:32:39 +01:00
n1474335
88e3c2ccb2
Merge branch 'issue-991' of https://github.com/Danh4/CyberChef into Danh4-issue-991
2021-03-26 13:59:16 +00:00
swesven
6155634d3b
Add the SM4 block cipher, also a no-padding option for block ciphers.
...
This adds an implementation of the SM4 block cipher, and operations
to encrypt and decrypt using it with CBC,ECB,CFB,OFB,CTR modes.
Also, a "no padding" option is added for AES,DES,3DES and SM4
decryption in ECB/CBC modes. This variant does not attempt to
validate the last block as being PKCS#7 padded.
This is useful, both since other padding schemes exist, and also
for decrypting data where the final block is missing.
2021-03-24 00:58:54 +01:00
n1474335
74ae77f17a
Tidied up and added tests for RSA operations
2021-02-01 19:15:32 +00:00
n1474335
99eb1cced5
Merge branch 'rsa' of https://github.com/mattnotmitt/CyberChef into mattnotmitt-rsa
2021-02-01 17:30:02 +00:00
Matt
3ab95384df
Add unicode tests
2020-08-19 10:55:29 +01:00
n1073645
3e3c526a62
Caesar Box Cipher Added
2020-07-06 16:35:14 +01:00
n1073645
c01ce90e06
Tests Added
2020-07-06 11:20:54 +01:00
hettysymes
3c68ad1302
Modified control rotor stepping so the next control rotor steps once the previous rotor reaches "O" and added tests
2020-06-07 17:45:17 +01:00
Matt
fad163e0eb
Added tests (that can't be run)
2020-04-07 21:16:29 +01:00
71819
209fc07eac
Issue 991: Add CBOR Decode operation
2020-03-30 11:31:25 +01:00
71819
ae70cb89ed
Issue 991: Add CBOR Encode operation
2020-03-30 11:31:25 +01:00
n1474335
3a0c8a199a
Tidied up 'Parse ObjectID Timestamp' operation
2020-03-27 11:56:42 +00:00
Dominic Fitch-Jones
9f4ef9cdad
Add ObjectId timestamp parser operation
2020-03-21 17:42:17 -04:00
n1474335
4308c717c3
Tests now display a progress bar and report long running tests
2020-03-13 14:59:48 +00:00
n1474335
c4493d15b6
Merge branch 'master' of https://github.com/VirtualColossus/CyberChef into VirtualColossus-master
2020-03-06 10:43:52 +00:00
n1474335
5e7b004925
Merge branch 'NewCiphers' of https://github.com/n1073645/CyberChef into n1073645-NewCiphers
2020-03-05 15:25:10 +00:00
n1073645
940b56ba5f
Luhn Checksum Operation Added
2020-02-26 10:55:15 +00:00