Does Signature class expect plain text only or message digest?
Theoritically, signing operation includes the following steps
1. Create Hash of message called Message Digest.
2. Encryption of Hash.
My query is:
Does Signature class expect plain text (in byte[] ) only?
or I need to explicitly create a Message digest first and then pass it to Signature class.

