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