package org.bouncycastle.asn1.cmp;

import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERInteger;
import org.bouncycastle.asn1.DERObject;

public class POPODecKeyRespContent
    extends ASN1Encodable
{
    private ASN1Sequence content;

    private POPODecKeyRespContent(ASN1Sequence seq)
    {
        content = seq;
    }

    public static POPODecKeyRespContent getInstance(Object o)
    {
        if (o instanceof POPODecKeyRespContent)
        {
            return (POPODecKeyRespContent)o;
        }

        if (o instanceof ASN1Sequence)
        {
            return new POPODecKeyRespContent((ASN1Sequence)o);
        }

        throw new IllegalArgumentException("Invalid object: " + o.getClass().getName());
    }

    public DERInteger[] toDERIntegerArray()
    {
        DERInteger[] result = new DERInteger[content.size()];

        for (int i = 0; i != result.length; i++)
        {
            result[i] = DERInteger.getInstance(content.getObjectAt(i));
        }

        return result;
    }

    
POPODecKeyRespContent ::= SEQUENCE OF INTEGER
Returns:a basic ASN.1 object representation.
/** * <pre> * POPODecKeyRespContent ::= SEQUENCE OF INTEGER * </pre> * @return a basic ASN.1 object representation. */
public DERObject toASN1Object() { return content; } }