204205206207208209210211
certPath = factory.generateCertPath(list); } catch (CertificateException ex) { // do nothing } if (null != certPath) { asigners.add(new CodeSigner(certPath, null)); } }
424344454647484950
/** * Tests CodeSigner.hashCode() */ public void testHashCode() { assertTrue(new CodeSigner(cpath, ts).hashCode() == (cpath.hashCode() ^ ts .hashCode())); assertTrue(new CodeSigner(cpath, null).hashCode() == cpath.hashCode()); }