Sorry if my question is stupid. I've succeeded signing a document and storing the signature in a document attribute but now I need to print it in a mail (base 64 encoded). The java.security.Signature has a metod toString() for do that but i don't know how do it. Please help me.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Sorry if my question is stupid. I've succeeded signing a document and storing the signature in a document attribute but now I need to print it in a mail (base 64 encoded). The java.security.Signature has a metod toString() for do that but i don't know how do it. Please help me.
The problem is that signature is stored as byte[]. So displaying array of bytes, won't help.