Interface ISignCertificateProvider


public interface ISignCertificateProvider
The implementation of this interface should provide the certificates for signing.
Since:
5.1
Author:
Jon van Leuven
  • Method Summary

    Modifier and Type
    Method
    Description
    This method returns an input stream that can be used to read the private key.
    This method returns an input stream that can be used to read the public key.
  • Method Details

    • getPublicKeyAsStream

      InputStream getPublicKeyAsStream() throws IOException
      This method returns an input stream that can be used to read the public key.
      Returns:
      an input stream that can be used to read the public key.
      Throws:
      IOException - This exception is thrown when the public key could not be read.
    • getPrivateKeyAsStream

      InputStream getPrivateKeyAsStream() throws IOException
      This method returns an input stream that can be used to read the private key.
      Returns:
      an input stream that can be used to read the private key.
      Throws:
      IOException - This exception is thrown when the private key could not be read.