Example usage for org.bouncycastle.asn1 DLSequence DLSequence

List of usage examples for org.bouncycastle.asn1 DLSequence DLSequence

Introduction

In this page you can find the example usage for org.bouncycastle.asn1 DLSequence DLSequence.

Prototype

public DLSequence() 

Source Link

Document

Create an empty sequence

Usage

From source file:org.jruby.ext.openssl.impl.PKCS10Request.java

License:LGPL

public ASN1Sequence toASN1Structure() {
    // TODO: outputting previous structure without checking isValid() is weird...
    if (signedRequest != null)
        return ASN1Sequence.getInstance(signedRequest.toASN1Structure());
    else//  w ww.ja  v  a 2s .c  o m
        return new DLSequence();
}