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

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.
signingKey  AsymmetricKeyParameter
Matching Private key for nominated (above) public key to be used to sign the request.

See Also