Pkcs10CertificationRequest(ISignatureFactory, X509Name, AsymmetricKeyParameter, Asn1Set) Constructor

Instantiate a Pkcs10CertificationRequest object with the necessary credentials.

Definition

Namespace: Org.BouncyCastle.Pkcs
Assembly: BouncyCastle.Cryptography (in BouncyCastle.Cryptography.dll) Version: 2.3.0-beta.187+d6da5648ae
public Pkcs10CertificationRequest(
	ISignatureFactory signatureFactory,
	X509Name subject,
	AsymmetricKeyParameter publicKey,
	Asn1Set attributes
)

Parameters

signatureFactory  ISignatureFactory
The factory for signature calculators to sign the PKCS#10 request with.
subject  X509Name
X509Name of subject eg OU="My unit." O="My Organisatioin" C="au"
publicKey  AsymmetricKeyParameter
Public Key to be included in cert reqest.
attributes  Asn1Set
ASN1Set of Attributes.

See Also