Java org.bouncycastle.pkcs PKCS10CertificationRequest fields, constructors, methods, implement or subclass

Example usage for Java org.bouncycastle.pkcs PKCS10CertificationRequest fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.bouncycastle.pkcs PKCS10CertificationRequest.

The text is from its open source code.

Constructor

PKCS10CertificationRequest(CertificationRequest certificationRequest)
Create a PKCS10CertificationRequestHolder from an underlying ASN.1 structure.
PKCS10CertificationRequest(byte[] encoded)
Create a PKCS10CertificationRequestHolder from the passed in bytes.

Method

Attribute[]getAttributes(ASN1ObjectIdentifier type)
Return an array of attributes matching the passed in type OID.
Attribute[]getAttributes()
Return the attributes, if any associated with this request.
byte[]getEncoded()
AlgorithmIdentifiergetSignatureAlgorithm()
Return the details of the signature algorithm used to create this request.
X500NamegetSubject()
Return the subject on this request.
SubjectPublicKeyInfogetSubjectPublicKeyInfo()
Return the SubjectPublicKeyInfo describing the public key this request is carrying.
booleanisSignatureValid(ContentVerifierProvider verifierProvider)
Validate the signature on the PKCS10 certification request in this holder.
CertificationRequesttoASN1Structure()
Return the underlying ASN.1 structure for this request.