ImportFromStream Method
Adds a key to the storage.
Syntax
public void importFromStream(java.io.InputStream stream, int format, String keyAlgorithm, String scheme, String schemeParams, int keyType);
Remarks
Use this method to add a key contained in a stream.
| kffUnknown | 0 | The key format was not recognized as one of the known formats. |
| kffAuto | 1 | The default format in current circumstances. This depends on the key being loaded or saved. |
| kffDER | 2 | DER (binary) format |
| kffPEM | 3 | PEM format (base64-encoded with headers) |
| kffJSON | 4 | JSON key format |
| ktAuto | 0 | The default key type in current circumstances. This depends on the operation, the file content, and the storage type. |
| ktPublic | 1 | The operation should be performed on a public key. |
| ktSecret | 2 | The operation should be performed on a private or secret key |