I need to setup a scenario where a client sends an encrypted(AES) and signed file and the server decrypts it and verifies the signature(RSA).
Here are the steps that I thought of:
1)Compute the signature of the textfile and then append the (base64 encoded)signature into a header 2) Encrypt the textfile(with the added header). 3)Send the encrypted file to server 4)At server, decrypt the file, then extract the signature from the header(base64 decode it). Verify the sender.Then use the textfile if verified.
My question is:
Do you think I should first encrypt the textfile and then add the header(base64) in plain so that verification of sender is done first and then if sender is verified can the operation proceed to decrypt the file contents?
Bottomline is, when I did it at first, I imagined the signature can also be obfuscated and therefore I encrypted it all. Now the question is, should signatures be really obfuscated?? How does the attacker use the signature(if in plain?)? He cannot anyway tamper it as verification will fail... Please throw some light.