java.lang.Object
java.security.KeyStoreSpi
- See Also:
- Source Code,
KeyStore
public abstract Enumeration<String> engineAliases()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract boolean engineContainsAlias(String alias)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract void engineDeleteEntry(String alias)
throws KeyStoreException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public boolean engineEntryInstanceOf(String alias,
Class<? extends KeyStore.Entry> entryClass)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract Certificate engineGetCertificate(String alias)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract String engineGetCertificateAlias(Certificate cert)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract Certificate[] engineGetCertificateChain(String alias)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract Date engineGetCreationDate(String alias)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public KeyStore.Entry engineGetEntry(String alias,
KeyStore.ProtectionParameter protParam)
throws KeyStoreException,
NoSuchAlgorithmException,
UnrecoverableEntryException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract Key engineGetKey(String alias,
char[] password)
throws NoSuchAlgorithmException,
UnrecoverableKeyException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract boolean engineIsCertificateEntry(String alias)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract boolean engineIsKeyEntry(String alias)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract void engineLoad(InputStream stream,
char[] password)
throws IOException,
NoSuchAlgorithmException,
CertificateException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void engineLoad(KeyStore.LoadStoreParameter param)
throws IOException,
NoSuchAlgorithmException,
CertificateException
- See Also:
- IllegalArgumentException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract void engineSetCertificateEntry(String alias,
Certificate cert)
throws KeyStoreException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void engineSetEntry(String alias,
KeyStore.Entry entry,
KeyStore.ProtectionParameter protParam)
throws KeyStoreException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract void engineSetKeyEntry(String alias,
byte[] key,
Certificate[] chain)
throws KeyStoreException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract void engineSetKeyEntry(String alias,
Key key,
char[] password,
Certificate[] chain)
throws KeyStoreException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract int engineSize()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract void engineStore(OutputStream stream,
char[] password)
throws IOException,
NoSuchAlgorithmException,
CertificateException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void engineStore(KeyStore.LoadStoreParameter param)
throws IOException,
NoSuchAlgorithmException,
CertificateException
- See Also:
- IllegalArgumentException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public KeyStoreSpi()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples