finished last of the compile errors
[org.ibex.crypto.git] / src / org / ibex / crypto / HMAC.java
index f6ec2f8..22fb126 100644 (file)
@@ -1,4 +1,4 @@
-package com.brian_web.crypto;
+package org.ibex.crypto;
 
 public class HMAC extends Digest {
     private final Digest h;
@@ -35,4 +35,7 @@ public class HMAC extends Digest {
         h.doFinal(out,off);
         reset();
     }
+    protected void processWord(byte[] in, int inOff) {}
+    protected void processLength(long bitLength) {}
+    protected void processBlock() {}
 }