Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
197 views

Scoring a string based on how English-like it is

I'm not sure how exactly to word this question, so here's an example: string1 = "THEQUICKBROWNFOX" string2 = "KLJHQKJBKJBHJBJLSDFD" I want a function that would score string1 higher than string2 and ...
7
votes
4answers
188 views

Isn't it difficult to recognize a successful decryption?

When I hear about methods for breaking encryption algorithms, I notice there is often focused on how to decrypt very rapidly and how to reduce the search space. However, I always wonder how you can ...
7
votes
3answers
760 views

How do brute force decryption attacks know when they've found the right solution? [closed]

How do brute-force attacks on encrypted data know when they've found the right key to decrypt the data? Is there a way to know that data's been decrypted, other than having a human looking at it? What ...
7
votes
2answers
416 views

What is the difference between a multi-collision and a first or second pre-image attack on a hash function?

What is the difference between a multi-collision in a hash function and a first or second preimage. First preimage attacks: given a hash h, find a message m such that hash(m) = h. Second preimage ...
7
votes
9answers
2k views

Is it possible to reverse engineer AES256?

Imagine I have this: $cdata = AES_256($data, $pass); AES_256 implements the AES algorithm. If I know the content of $cdata and the content of $data and also have the AES_256() code, can I reverse ...
3
votes
1answer
115 views

Security implications of storing the password hash along an encrypted AES key

I am using the PKCS#5 standard to generate a key using a random and unique salt and the user`s password in input. Consider this key as the "encryption" key. The "encryption" key is used to encrypt a ...
2
votes
0answers
67 views

spatial ciphers/cryptanalysis techniques based on neighborhood spaces in a grid?

Are there spatial ciphers/cryptanalysis techniques based on neighborhood spaces in a grid? More specially are there 5 orientation spaces with the values being north, south, east, west, neutral? ...
1
vote
0answers
761 views

Transposition or Substitution Ciphertext? (monoalphabetic or polyalphabetic?)

We have a ciphertext with IC=0.0685. We want to find out the class descriptor (mono-alphabetical/poly-alphabetical/transposition). I have applied the 2 probabilistic tests to try and guess what class ...
1
vote
4answers
625 views

How to predict the next GUID from a given GUID?

i have sent 10000 mails to our customers and each mail had a link of the format http://example.com/LogIn?key={guid} unfortunately the guid i sent were random guids (test data generated by ...
0
votes
0answers
10 views

Known Plaintext attack against XTEA? [migrated]

I'm looking for information on known-plaintext attacks against XTEA. I'm most interested in the worst case scenario: if an attacker has all 8 bytes of input and all 8 bytes of output, how much ...
0
votes
0answers
45 views

How can I break REDSHIRT / REDSHIRT2 encryption? [migrated]

Recently, a user on Gaming.SE asked a question about whether the user password in the video game Uplink could be modified after being initially set. The game does not contain an option to change the ...
0
votes
0answers
86 views

Breaking an Encryption Algorithm based on a Linear Congruential Generator?

Does Any-one have the Knowledge to break this Encryption Algorithm? Demo: http://freecx.co.uk/SEA1m5/SEA1m5_v1.0__utf8.html It's based on an modified Use of a regular Linear Congruential Generator ...
0
votes
3answers
94 views

repetition in encrypted data — red flag?

I have some base-64 encoded encrypted data and noticed a fair amount of repetition. In a (approx) 200-character-long string, a certain base-64 character is repeated up to 7 times in several separate ...
0
votes
1answer
189 views

How could I use equivalent keys weakness to crack TEA cipher?

How could I use equivalent keys weakness of the TEA algorithm to get two 32-bit keys from a double encoded TEA cipher using a meet in the middle attack, in C? I have 4 pieces of known plain text and ...