signature = bar.readBinaryString();
}
Signature s = Signature.getInstance("SHA1withRSA");
s.initVerify(pubKey);
s.update(data);
return s.verify(signature);
} catch (NoSuchAlgorithmException nsae) {
throw new InvalidSignatureException();
} catch (IOException ioe) {