Encrypting Objects
Is it at all possible to perform encryption on an object? Using bouncycastle to do RSA assymetric encryption. I have only seen examples of encrypting byte arrays and files.
I have an object of type Student. That basically contains a couple of strings containing valuable data. I would like to encrypt the Student object that encapsulates this data. Is this possible? Or will i be forced to encrypt the contents of this object individually?
Any sample code will also be very helpful
Thanking you in advance
Thee Olde Wizard

