encryption - Symmetric cryptography and salt -


I need to encrypt two-way (symmetric) specific tokens. These tokens are likely to be repeated (e.g. Those people are the first names), but I do not want an attacker to conclude which encrypted token came from the same original tokens. Hello, there is a way to go for cryptography (hashing) in a way.

Is there a way that can work in symmetric cryptography, an alternative solution or alternative?

Yes used properly, symmetric encryption does not reveal anything about plain text It is not even fact that many plain-widths are the same.

Proper usage means choosing a method of operation that is an initial vector (IV) that is not ECB) and appropriately select the fourth (usually random bytes). Encrypting many plain areas with the same key and fourth allows this attack very much like ECB mode, and using a stable IV is a common mistake.

Comments

Popular posts from this blog

java - ImportError: No module named py4j.java_gateway -

python - Receiving "KeyError" after decoding json result from url -

.net - Creating a new Queue Manager and Queue in Websphere MQ (using C#) -