- Fix another Mac class problem

- Change to RouterLaunch main so we get a wrapper.log
This commit is contained in:
zzz
2009-06-29 17:42:13 +00:00
parent 3fee5a3781
commit 7972c0c862
2 changed files with 4 additions and 2 deletions

View File

@ -74,7 +74,7 @@ public class HMACGenerator {
if ((key == null) || (key.getData() == null) || (curData == null))
throw new NullPointerException("Null arguments for HMAC");
Mac mac = acquire();
I2PHMac mac = acquire();
mac.init(key.getData());
mac.update(curData, curOffset, curLength);
byte rv[] = acquireTmp();