Not implemented yet: DSA public key
问题 I'm writing both a server and an Android client application. The Android client sends measurements to the server. In order to ensure the data integrity, a digital signature is appended to each measurement. Since I need everything to be Gson-compatible, storing the public key itself is not possible. I'm storing the G, P, Q and Y factors instead. Here's a snippet from the request class: public PublicKey getPublicKey() { try { DSAPublicKeySpec keySpec = new DSAPublicKeySpec(publicKeyY,