1 11 package org.eclipse.osgi.internal.provisional.verifier; 12 13 import java.security.SignatureException ; 14 import java.security.cert.*; 15 16 27 public interface CertificateVerifier { 28 36 public void checkContent() throws CertificateException, CertificateExpiredException, SignatureException ; 37 38 44 public String [] verifyContent(); 45 46 50 public boolean isSigned(); 51 52 58 public CertificateChain[] getChains(); 59 } 60 | Popular Tags |