コード例 #1
0
ファイル: RC2Cipher.java プロジェクト: ronshapiro/j86
 protected int engineUpdate(byte[] in, int inOfs, int inLen, byte[] out, int outOfs)
     throws ShortBufferException {
   return core.update(in, inOfs, inLen, out, outOfs);
 }
コード例 #2
0
ファイル: RC2Cipher.java プロジェクト: ronshapiro/j86
 protected byte[] engineUpdate(byte[] in, int inOfs, int inLen) {
   return core.update(in, inOfs, inLen);
 }