Search found 5 matches
- Thu Aug 24, 2017 1:24 am
- Forum: Challenges
- Topic: Didactic Feedback Cipher Long 2
- Replies: 21
- Views: 41701
Well the script that i was able to implement in cipher long 1 taked aorund 689 seconds to decrypt the string, so i added another for cicle for the x variable but imagine something like 689 seconds * 0xFFFFFFFF i was running the new sript for two days, it was impossible to get a fast answer. I am usi...
- Sat Aug 19, 2017 12:00 am
- Forum: Challenges
- Topic: Didactic Feedback Cipher Long 2
- Replies: 21
- Views: 41701
- Fri Aug 18, 2017 7:27 pm
- Forum: Challenges Solved
- Topic: Didactic XOR Cipher 2
- Replies: 15
- Views: 2405
This c program will filter the results with the more commons English words /*Challenge 'Didactic XOR Cipher 2' [Crypto] Here is a string of bytes encoded in hex: 948881859781c4979186898d90c4c68c85878f85808b8b808881c6c4828b96c4908c8d97c4878c858888818a8381 This sequence has been encrypted with the sam...
- Fri Aug 18, 2017 6:53 pm
- Forum: Challenges
- Topic: Didactic Feedback Cipher Long
- Replies: 11
- Views: 21359
- Thu Aug 17, 2017 3:48 pm
- Forum: Challenges
- Topic: Didactic Feedback Cipher
- Replies: 23
- Views: 48840
In this code
This
should be this
Code: Select all
k = {unknown byte}
for (i = 0; i < len(txt); i++)
c = txt[i] ^ k
print c
k = c
Code: Select all
k = c
should be this
Code: Select all
k = txt[i]