Exemplo n.º 1
0
 protected int engineDoFinal(byte[] in, int inOfs, int inLen, byte[] out, int outOfs)
     throws IllegalBlockSizeException, ShortBufferException, BadPaddingException {
   return core.doFinal(in, inOfs, inLen, out, outOfs);
 }
Exemplo n.º 2
0
 protected byte[] engineDoFinal(byte[] in, int inOfs, int inLen)
     throws IllegalBlockSizeException, BadPaddingException {
   return core.doFinal(in, inOfs, inLen);
 }