I'm working on implementing DSA digital signature algorithm. I understand the algorithm itself, one thing I don't really understand is how should my message look after it was signed?

For example, I have a text file that I'd like to sign and send to someone else. Where should I put the generated keys for verifying the signature, and how should I parse this message to verify the signature?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

PKCS#7 is your friend.

Update: I forgot to mention, that CMS (Cryptographic Message Syntax) is an evolution of PKCS#7.

link|improve this answer
feedback

Eugene's link should answer your question. I will add one thing: Don't expect any actual security from your implementation of DSA. If you want the information secure, use an already-written DSA implementation. When not expertly written, crypto primitives can be terribly insecure.

link|improve this answer
It's just an assignment my teacher gave me, so no worries =) – Egor Jun 6 '11 at 17:32
Ok, code away then :) . – pg1989 Jun 6 '11 at 17:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.