I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 31938f49 authored by zzz's avatar zzz
Browse files

SAM: Fix checkPrivateDestination() for key certs (ticket #1318)

parent c95ed2ea
No related branches found
No related tags found
No related merge requests found
......@@ -79,15 +79,26 @@ class SAMUtils {
}
public static class InvalidDestinationException extends Exception {
static final long serialVersionUID = 0x1 ;
private static final long serialVersionUID = 0x1;
}
/**
* Check whether a base64-encoded {dest,privkey,signingprivkey} is valid
*
* @param dest The base64-encoded destination and keys to be checked (same format as PrivateKeyFile)
*
* @throws InvalidDestination if invalid
*/
public static void checkPrivateDestination(String dest) throws InvalidDestinationException {
ByteArrayInputStream destKeyStream = new ByteArrayInputStream(Base64.decode(dest));
try {
new Destination().readBytes(destKeyStream);
Destination d = new Destination();
d.readBytes(destKeyStream);
new PrivateKey().readBytes(destKeyStream);
new SigningPrivateKey().readBytes(destKeyStream);
SigningPrivateKey spk = new SigningPrivateKey(d.getSigningPublicKey().getType());
spk.readBytes(destKeyStream);
} catch (Exception e) {
throw new InvalidDestinationException();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment