| java.lang.Object org.apache.harmony.security.pkcs10.CertificationRequest
CertificationRequest | public class CertificationRequest (Code) | | The class implements the ASN.1 DER encoding and decoding of the PKCS#10
Certificate Signing Request (CSR). Its ASN notation is as follows:
CertificationRequest ::= SEQUENCE {
certificationRequestInfo CertificationRequestInfo,
signatureAlgorithm SignatureAlgorithmIdentifier,
signature Signature
}
SignatureAlgorithmIdentifier ::= AlgorithmIdentifier
Signature ::= BIT STRING
|
getEncoded | public byte[] getEncoded()(Code) | | Returns ASN.1 encoded form of this CertificationRequest value.
a byte array containing ASN.1 encode form. |
getSignature | public byte[] getSignature()(Code) | | Returns the signature. |
|
|