Pkcs10CertificationRequestDelaySigned(String, 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 Pkcs10CertificationRequestDelaySigned(
	string signatureAlgorithm,
	X509Name subject,
	AsymmetricKeyParameter publicKey,
	Asn1Set attributes
)

Parameters

signatureAlgorithm  String
Name of Sig Alg.
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.

Remarks

After the object is constructed use the GetDataToSign and finally the SignRequest methods to finalize the request.

See Also