6
votes
Way to encrypt a single int
What you want is a 32-bit block cipher. Unfortunately, most block ciphers are 64-bits or more due to the weak …
1
vote
How do I encrypt a string and get a equal length encrypted string?
Ideally, if the existing columns are larger than a single block in a standard block cipher (16 bytes for AES, 8 bytes for TDES), then you could encrypt in …
0
votes
Calculate maximum size for encypted data
Jeff's answer is almost correct, except that PKCS7 will always add padding to the message, even if the message exactly fits inside an integral number of blocks. Also, don't forget that if using a r …
3
votes
How to choose an AES encryption mode (CBC ECB CTR OCB CFB)?
Anything but ECB.
If using CTR, it is imperative that you use a different IV for each message, otherwise you end up with the attacker being able to take two ciphertexts and deriving …
1
vote
What is the safest algorithm in Kohana’s auth module?
It looks like SHA-512 is your best option.
To summarize the linked content from danieltalsky's answer, the bad thing about SHA-512 is that it's fast. It's a fine hash, but SHA-512's speed m …
