Search in sources :

Example 56 with DERSequence

use of org.bouncycastle.asn1.DERSequence in project XobotOS by xamarin.

the class PolicyInformation method toASN1Object.

/* 
     * PolicyInformation ::= SEQUENCE {
     *      policyIdentifier   CertPolicyId,
     *      policyQualifiers   SEQUENCE SIZE (1..MAX) OF
     *              PolicyQualifierInfo OPTIONAL }
     */
public DERObject toASN1Object() {
    ASN1EncodableVector v = new ASN1EncodableVector();
    v.add(policyIdentifier);
    if (policyQualifiers != null) {
        v.add(policyQualifiers);
    }
    return new DERSequence(v);
}
Also used : DERSequence(org.bouncycastle.asn1.DERSequence) ASN1EncodableVector(org.bouncycastle.asn1.ASN1EncodableVector)

Example 57 with DERSequence

use of org.bouncycastle.asn1.DERSequence in project XobotOS by xamarin.

the class RSAPublicKeyStructure method toASN1Object.

/**
     * This outputs the key in PKCS1v2 format.
     * <pre>
     *      RSAPublicKey ::= SEQUENCE {
     *                          modulus INTEGER, -- n
     *                          publicExponent INTEGER, -- e
     *                      }
     * </pre>
     * <p>
     */
public DERObject toASN1Object() {
    ASN1EncodableVector v = new ASN1EncodableVector();
    v.add(new DERInteger(getModulus()));
    v.add(new DERInteger(getPublicExponent()));
    return new DERSequence(v);
}
Also used : DERSequence(org.bouncycastle.asn1.DERSequence) ASN1EncodableVector(org.bouncycastle.asn1.ASN1EncodableVector) DERInteger(org.bouncycastle.asn1.DERInteger)

Example 58 with DERSequence

use of org.bouncycastle.asn1.DERSequence in project XobotOS by xamarin.

the class CertBag method toASN1Object.

public DERObject toASN1Object() {
    ASN1EncodableVector v = new ASN1EncodableVector();
    v.add(certId);
    v.add(new DERTaggedObject(0, certValue));
    return new DERSequence(v);
}
Also used : DERSequence(org.bouncycastle.asn1.DERSequence) DERTaggedObject(org.bouncycastle.asn1.DERTaggedObject) ASN1EncodableVector(org.bouncycastle.asn1.ASN1EncodableVector)

Example 59 with DERSequence

use of org.bouncycastle.asn1.DERSequence in project XobotOS by xamarin.

the class CertificationRequest method toASN1Object.

public DERObject toASN1Object() {
    // Construct the CertificateRequest
    ASN1EncodableVector v = new ASN1EncodableVector();
    v.add(reqInfo);
    v.add(sigAlgId);
    v.add(sigBits);
    return new DERSequence(v);
}
Also used : DERSequence(org.bouncycastle.asn1.DERSequence) ASN1EncodableVector(org.bouncycastle.asn1.ASN1EncodableVector)

Example 60 with DERSequence

use of org.bouncycastle.asn1.DERSequence in project XobotOS by xamarin.

the class AttCertValidityPeriod method toASN1Object.

/**
     * Produce an object suitable for an ASN1OutputStream.
     * <pre>
     *  AttCertValidityPeriod  ::= SEQUENCE {
     *       notBeforeTime  GeneralizedTime,
     *       notAfterTime   GeneralizedTime
     *  } 
     * </pre>
     */
public DERObject toASN1Object() {
    ASN1EncodableVector v = new ASN1EncodableVector();
    v.add(notBeforeTime);
    v.add(notAfterTime);
    return new DERSequence(v);
}
Also used : DERSequence(org.bouncycastle.asn1.DERSequence) ASN1EncodableVector(org.bouncycastle.asn1.ASN1EncodableVector)

Aggregations

DERSequence (org.bouncycastle.asn1.DERSequence)230 ASN1EncodableVector (org.bouncycastle.asn1.ASN1EncodableVector)199 ASN1Sequence (org.bouncycastle.asn1.ASN1Sequence)54 ASN1Integer (org.bouncycastle.asn1.ASN1Integer)52 DERTaggedObject (org.bouncycastle.asn1.DERTaggedObject)48 ASN1ObjectIdentifier (org.bouncycastle.asn1.ASN1ObjectIdentifier)44 IOException (java.io.IOException)37 DEROctetString (org.bouncycastle.asn1.DEROctetString)37 BigInteger (java.math.BigInteger)30 DERUTF8String (org.bouncycastle.asn1.DERUTF8String)28 X509Certificate (java.security.cert.X509Certificate)27 ASN1Encodable (org.bouncycastle.asn1.ASN1Encodable)26 GeneralName (org.bouncycastle.asn1.x509.GeneralName)26 X500Name (org.bouncycastle.asn1.x500.X500Name)22 DERBitString (org.bouncycastle.asn1.DERBitString)19 DERIA5String (org.bouncycastle.asn1.DERIA5String)19 DERSet (org.bouncycastle.asn1.DERSet)19 ArrayList (java.util.ArrayList)16 ASN1OctetString (org.bouncycastle.asn1.ASN1OctetString)16 DERInteger (org.bouncycastle.asn1.DERInteger)14