DES KPA - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: DES KPA (/thread-6747.html) |
DES KPA - w3bd3vil - 08-03-2017 I was wondering if it was possible to crack DES KPA generated the following way Code: #echo -n "1234567" | openssl enc -e -des-ecb -a -nosalt -k a I was also looking at crack.sh but it requires a plaintext of 8 characters. And I don't understand this further. Code: #echo -n "12345678" | openssl enc -e -des-ecb -a -nosalt -k a Can someone help me understand this. RE: DES KPA - w3bd3vil - 08-03-2017 I misunderstood the plaintext part. It uses PKCS7 padding in my case. That solves my issue. |