tags:

views:

252

answers:

2

Is one more secure than the other?

+1  A: 

One uses DSA and one uses RSA.

Yann Ramin
assuming you are just using the default names (which logically that looks like it), theatrus hit it right on the head.
David Larrabee
+2  A: 

id_rsa.pub and id_dsa.pub are the public keys for id_rsa and id_dsa. If you are asking in relation to SSH, id_rsa is an RSA key and can be used with the SSH protocol 1 or 2, whereas id_dsa is a DSA key and can only be used with SSH protocol 2. Both are very secure, but DSA does seem to be the standard these days (assuming all your clients/servers support SSH 2).

Mike Pelley