public static class BcKeyStoreSpi.BouncyCastleStore extends BcKeyStoreSpi
BcKeyStoreSpi.BouncyCastleStore, BcKeyStoreSpi.Std, BcKeyStoreSpi.Version1random, table, version| Constructor and Description |
|---|
BouncyCastleStore() |
| Modifier and Type | Method and Description |
|---|---|
void |
engineLoad(InputStream stream,
char[] password)
Loads this
KeyStoreSpi from the given InputStream. |
void |
engineStore(OutputStream stream,
char[] password)
Writes this
KeyStoreSpi to the specified OutputStream. |
engineAliases, engineContainsAlias, engineDeleteEntry, engineGetCertificate, engineGetCertificateAlias, engineGetCertificateChain, engineGetCreationDate, engineGetKey, engineIsCertificateEntry, engineIsKeyEntry, engineSetCertificateEntry, engineSetKeyEntry, engineSetKeyEntry, engineSize, loadStore, makePBECipher, saveStore, setRandomengineEntryInstanceOf, engineGetEntry, engineLoad, engineSetEntry, engineStorepublic void engineLoad(InputStream stream, char[] password) throws IOException
KeyStoreSpiKeyStoreSpi from the given InputStream.
Utilizes the given password to verify the stored data.engineLoad in class BcKeyStoreSpistream - the InputStream to load this KeyStoreSpi's
data from.password - the password to verify the stored data, maybe null.IOException - if a problem occurred while reading from the stream.public void engineStore(OutputStream stream, char[] password) throws IOException
KeyStoreSpiKeyStoreSpi to the specified OutputStream.
The data written to the OutputStream is protected by the
specified password.engineStore in class BcKeyStoreSpistream - the OutputStream to write the store's data to.password - the password to protect the data.IOException - if a problem occurred while writing to the stream.