cryptography « Integer « Java Data Type Q&A





1. Using java to encrypt integers    stackoverflow.com

I'm trying to encrypt some integers in java using java.security and javax.crypto. The problem seems to be that the Cipher class only encrypts byte arrays. I can't directly convert ...

2. Encrypt an Integer Value with DES    stackoverflow.com

I want to encrypt an integer with DES, the resultant cipher text should also be an integer. Decryption function should follow this notion as well. I am trying to modifying the ...