コード例 #1
0
  public byte[] getMac() {
    byte[] res = new byte[mac.getMacSize()];

    mac.doFinal(res, 0);

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