AES192CTR.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.Cipher;
00033 import javax.crypto.spec.*;
00034
00035 public class AES192CTR implements Cipher{
00036 private static final int ivsize=16;
00037 private static final int bsize=24;
00038 private javax.crypto.Cipher cipher;
00039 public int getIVSize(){return ivsize;}
00040 public int getBlockSize(){return bsize;}
00041 public void init(int mode, byte[] key, byte[] iv) throws Exception{
00042 String pad="NoPadding";
00043 byte[] tmp;
00044 if(iv.length>ivsize){
00045 tmp=new byte[ivsize];
00046 System.arraycopy(iv, 0, tmp, 0, tmp.length);
00047 iv=tmp;
00048 }
00049 if(key.length>bsize){
00050 tmp=new byte[bsize];
00051 System.arraycopy(key, 0, tmp, 0, tmp.length);
00052 key=tmp;
00053 }
00054 try{
00055 SecretKeySpec keyspec=new SecretKeySpec(key, "AES");
00056 cipher=javax.crypto.Cipher.getInstance("AES/CTR/"+pad);
00057 cipher.init((mode==ENCRYPT_MODE?
00058 javax.crypto.Cipher.ENCRYPT_MODE:
00059 javax.crypto.Cipher.DECRYPT_MODE),
00060 keyspec, new IvParameterSpec(iv));
00061 }
00062 catch(Exception e){
00063 cipher=null;
00064 throw e;
00065 }
00066 }
00067 public void update(byte[] foo, int s1, int len, byte[] bar, int s2) throws Exception{
00068 cipher.update(foo, s1, len, bar, s2);
00069 }
00070 public boolean isCBC(){return false; }
00071 }