Probably somebody asked that already, but I couldn't find any usefull information and I've never done it before.

So here is the problem.

If I'll get a set of key pairs (DSA public and private keys) with different time validity and unique ID, what is the best way to store them in MySQL-DB using Java?

Is it a good idea at all to store them in DB?

Thank you in advance.

Mur

Ps. another problem, i cann't really imagine, how do the both keys look like? just byte arrays?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Your best bet is to use blobs when storing them.

The decision of whether or not it's a good idea to store the keys in the database depends on the specifics of your application. I can imagine a secure database dedicated to storing this type of information might work for some situations.

link|improve this answer
Yes, I solved that problem already, and yes, I stored them as blob :) – Mur Votema Feb 9 '11 at 8:18
feedback

Your Answer

 
or
required, but never shown

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