canmove, Confirmed users
1,570
edits
No edit summary |
|||
Line 481: | Line 481: | ||
In order to make this work we must choose an appropriate key type and hashing algorithm for generating the digital signature. As far as the implementation goes this choice is largely irrelevant. So long as NSS supports the choice it is a trivial change to make the code work. | In order to make this work we must choose an appropriate key type and hashing algorithm for generating the digital signature. As far as the implementation goes this choice is largely irrelevant. So long as NSS supports the choice it is a trivial change to make the code work. | ||
=== Hashing Algorithm === | === Hashing Algorithm === | ||
Line 500: | Line 493: | ||
* SHA512 | * SHA512 | ||
Since we have no need to support older apps or anything we should probably just choose SHA512 as being the strongest hashing method we have available right now. | |||
=== Key Type === | |||
* RSA | |||
* DSA | |||
Since DSA cannot be used with the SHA512 hashing algorithm we should use RSA key types. |