![JAR search and dependency download from the Maven repository](/logo.png)
javapns.communication.WrappedKeystore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javapns Show documentation
Show all versions of javapns Show documentation
JavaPNS branch with refactoring of org.json package to a javapns.json pacakge
The newest version!
package javapns.communication;
import java.io.*;
import java.security.*;
/**
* Special wrapper for a KeyStore.
*
* @author Sylvain Pedneault
*/
class WrappedKeystore extends InputStream {
private final KeyStore keystore;
public WrappedKeystore(KeyStore keystore) {
this.keystore = keystore;
}
@Override
public int read() throws IOException {
return 0;
}
public KeyStore getKeystore() {
return keystore;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy