I have a Software that Encrypts message using AES , the random generated AES key is Encrypted by the receiver's public RSA key. now when I send the message to multiple users...
Sender Side :
Message is Encrypted by Random hashed (sha256) AES KEY
The AES key is then Encrypted many time and appended to the encrypted message using each receiver's public key.
the message has [ number for receivers, [list of encrypted keys], Encrypted message]
Receiver Side:
get the number of receivers
loop thru the appended encrypted keys and decrypt using your Private RSA. until you find the one intended for you. such that when he/she decrypt the key they get the AES Key.
3.decrypt the message using AES key.
Knowing that the key is of base 64 string which means it ends with '=', and of the length 256 because of the sha
the Question IS : How Do i know (if I'm the receiver) that the Decrypted key using my Private RSA is correct Automatically ?
thank you in advance.

The AES key is then Encrypted many time and appended to the encrypted message using each receiver's public key.- How should we interpret this? If there are three recipients with their public keys as P_1, P_2 and P_3, do you append ENC(ENC(ENC(aes_key, P_1), P_2), P_3) or do you append ENC(aes_key, P_1), ENC(aes_key, P_2) and ENC(aes_key, P_3)? – Susam Pal Feb 8 '12 at 10:10ENC(aes_key, P_1), ENC(aes_key, P_2) and ENC(aes_key, P_3)– Amait Feb 8 '12 at 23:44