PKCS1

Inheritance: java.lang.Object, com.aspose.pdf.Signature

public final class PKCS1 extends Signature

Represents signature object regarding PKCS#1 standard. RSA encryption algorithm and SHA-1 digest method are used for signing.

Constructors

ConstructorDescription
PKCS1(InputStream image)Initializes new instance of the PKCS1 class.
PKCS1()Inititalizes new instance of the PKCS1 class.
PKCS1(String pfx, String password)Inititalizes new instance of the PKCS1 class.
PKCS1(InputStream pfx, String password)Inititalizes new instance of the PKCS1 class.

PKCS1(InputStream image)

public PKCS1(InputStream image)

Initializes new instance of the PKCS1 class.

Parameters:

ParameterTypeDescription
imagejava.io.InputStreamThis image will define signature appearance on the page.

PKCS1()

public PKCS1()

Inititalizes new instance of the PKCS1 class.

PKCS1(String pfx, String password)

public PKCS1(String pfx, String password)

Inititalizes new instance of the PKCS1 class.

Parameters:

ParameterTypeDescription
pfxjava.lang.StringPfx file which contains certificate for signing.
passwordjava.lang.StringPassword for certificate.

PKCS1(InputStream pfx, String password)

public PKCS1(InputStream pfx, String password)

Inititalizes new instance of the PKCS1 class.

Parameters:

ParameterTypeDescription
pfxjava.io.InputStreamStream with certificate data organized as pfx.
passwordjava.lang.StringPassword to get access to the private key in the certificate.