public ASN1Value decode(Tag implicitTag, InputStream istream)
        throws InvalidBERException, IOException {
      SEQUENCE seq = (SEQUENCE) seqt.decode(implicitTag, istream);

      return new GetCert((ANY) seq.elementAt(0), (INTEGER) seq.elementAt(1));
    }