49 lines
1.4 KiB
Java
49 lines
1.4 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.baja.security.crypto;
|
|
|
|
import java.security.Key;
|
|
import java.security.cert.X509Certificate;
|
|
import java.util.Date;
|
|
import java.util.Enumeration;
|
|
|
|
public interface IKeyStore {
|
|
public Enumeration aliases() throws Exception;
|
|
|
|
public boolean containsAlias(String var1) throws Exception;
|
|
|
|
public void deleteEntry(String var1) throws Exception;
|
|
|
|
public X509Certificate getCertificate(String var1) throws Exception;
|
|
|
|
public String getCertificateAlias(X509Certificate var1) throws Exception;
|
|
|
|
public X509Certificate[] getCertificateChain(String var1) throws Exception;
|
|
|
|
public Date getCreationDate(String var1) throws Exception;
|
|
|
|
public Key getKey(String var1, char[] var2) throws Exception;
|
|
|
|
public boolean isCertificateEntry(String var1) throws Exception;
|
|
|
|
public boolean isKeyEntry(String var1) throws Exception;
|
|
|
|
public void setCertificateEntry(String var1, X509Certificate var2) throws Exception;
|
|
|
|
public void setKeyEntry(String var1, byte[] var2, X509Certificate[] var3) throws Exception;
|
|
|
|
public void setKeyEntry(String var1, Key var2, char[] var3, X509Certificate[] var4) throws Exception;
|
|
|
|
public int size() throws Exception;
|
|
|
|
public void save() throws Exception;
|
|
|
|
public Enumeration getCertificates() throws Exception;
|
|
|
|
public String findCertificate(X509Certificate var1) throws Exception;
|
|
|
|
public void deleteEntries(String[] var1) throws Exception;
|
|
}
|
|
|