コード例 #1
0
 public void write(byte[] b, int off, int len) throws IOException {
   mac.update(b, off, len);
 }
コード例 #2
0
 public void write(int b) throws IOException {
   mac.update((byte) b);
 }