Ejemplo n.º 1
0
 @Override
 public void write(int b) throws IOException {
   if (first) {
     first = false;
   } else {
     super.write(b);
   }
 }
Ejemplo n.º 2
0
 @Override
 void encode(ASN1OutputStream out) throws IOException {
   out.writeEncoded(BERTags.INTEGER, bytes);
 }