HMACSHA1.java
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 package com.jcraft.jsch.jce;
00031
00032 import com.jcraft.jsch.MAC;
00033 import javax.crypto.*;
00034 import javax.crypto.spec.*;
00035
00036 public class HMACSHA1 implements MAC{
00037 private static final String name="hmac-sha1";
00038 private static final int bsize=20;
00039 private Mac mac;
00040 public int getBlockSize(){return bsize;};
00041 public void init(byte[] key) throws Exception{
00042 if(key.length>bsize){
00043 byte[] tmp=new byte[bsize];
00044 System.arraycopy(key, 0, tmp, 0, bsize);
00045 key=tmp;
00046 }
00047 SecretKeySpec skey=new SecretKeySpec(key, "HmacSHA1");
00048 mac=Mac.getInstance("HmacSHA1");
00049 mac.init(skey);
00050 }
00051 private final byte[] tmp=new byte[4];
00052 public void update(int i){
00053 tmp[0]=(byte)(i>>>24);
00054 tmp[1]=(byte)(i>>>16);
00055 tmp[2]=(byte)(i>>>8);
00056 tmp[3]=(byte)i;
00057 update(tmp, 0, 4);
00058 }
00059
00060 public void update(byte foo[], int s, int l){
00061 mac.update(foo, s, l);
00062 }
00063
00064 public void doFinal(byte[] buf, int offset){
00065 try{
00066 mac.doFinal(buf, offset);
00067 }
00068 catch(ShortBufferException e){
00069 }
00070 }
00071
00072 public String getName(){
00073 return name;
00074 }
00075 }