↧
OpenPGP Library for JavaNew custom storage mechanism for KeyStore class removes 'in-memory' and 'file-based' storage limitation.
Features
- package com.didisoft.pgp.storage
- IKeyStoreStorage - interface for custom storage of a KeyStore.
- FileKeyStorage - IKeyStoreStorage implementation obtained from a file.
- InMemoryKeyStorage - IKeyStoreStorage implementation obtained from RAM memory.
- package com.didisoft.pgp
- KeyStore constructors that accepts IKeyStoreStorage backend.
- KeyStore.checkPasssword(IKeyStoreStorage) - checks a password match for a IKeyStoreStorage backend.
- KeyStore.isPassswordProtected(IKeyStoreStorage) - checks is a IKeyStoreStorage backend password protected.
- KeyStore.store(OutputStream out, String password) - stores the KeyStore into an OutputStream.
↧