View Javadoc

1   package org.eparapher.core.crypto.keystore;
2   
3   import org.eparapher.core.crypto.KeystoreEntry;
4   
5   public interface ITrustStore extends IGenericStore{
6   
7   	public KeystoreEntry[] getTrustedCertificates();
8   	
9   	public boolean loadTrustStore();
10  	public boolean saveTrustStore();
11  }